summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9a332e2849d012880f4ce29b68e99ff263c44271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
statistics: statistics.pas
	mkdir -p lib
	fpc -Mobjfpc -FUlib -Fu/usr/lib/fpc/src/packages/* -Fu../units "$<"

werte.dat: statistics gpx-to-tsv
	find ~/tmp/ -name '*.gpx' \
	| sort \
	| tr '\n' '\0' \
	| xargs -0r cat \
	| ./gpx-to-tsv \
	| ./statistics \
	>"$@"