GPST.pm: Create gen_gpstrans_entry(), move stuff out of trackpoint()
[gpstools.git] / Makefile
blob40e9543355f9ef3e08e56c705177a5b5db5778dc
1 # Makefile for gpstools
2 # File ID: 32685082-4ea4-11df-a951-90e6ba3022ac
4 all:
5 @echo Syntax: make test\|remotes\|pushall
7 test:
8 cd tests; $(MAKE)
10 clean:
11 cd tests; $(MAKE) clean
13 remotes:
14 git remote add github git@github.com:sunny256/gpstools.git; true
15 git remote add gitorious git@gitorious.org:sunny256/gpstools.git; true
16 git remote add repoorcz ssh://sunny256@repo.or.cz/srv/git/gpstools.git; true
17 git remote add sunbase sunny@git.sunbase.org:/home/sunny/Git/gpstools; true
19 pushall:
20 git push --all sunbase; true
21 git push --tags sunbase; true
22 git push github; true
23 git push gitorious; true
24 git push repoorcz; true