###################################################################################
#	Makefile
###################################################################################
#

all:

packages:
	dnf install picaxe pyserial scipy python2-matplotlib python2-matplotlib-wx

prog:
	picaxe28x2 gpspeed-demo-datalog.bas

run:
	python2 gpspeed-datalog.py2 data.csv

clean:
	rm -f data.csv *.err
