diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8efab47 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +statistics: statistics.pas + mkdir -p lib + fpc -Mobjfpc -FUlib -Fu/usr/lib/fpc/src/packages/* -Fu../units "$<" + +run: statistics + find ~/tmp/ -name '*.gpx' \ + | sort \ + | tr '\n' '\0' \ + | xargs -0r cat \ + | ./gpx-to-tsv \ + | ./statistics |