Merge branch 'master' of ssh://repo.or.cz/srv/git/tgl
[tgl.git] / Makefile
blobb313cddd270c69077af9c4051d02f70880dcb22e
1 include config.mk
3 all:
4 ( for f in $(DIRS); do ( cd $$f ; make all ) || exit 1 ; done )
6 clean:
7 rm -f *~ lib/libTinyGL.a include/GL/*~ TAGS
8 ( for f in $(DIRS); do ( cd $$f ; make clean ; ) done )
10 install:
11 ( for f in $(DIRS); do ( cd $$f ; make install ; ) done )
14 tar:
15 ( cd .. ; tar zcvf TinyGL-0.4.tar.gz TinyGL --exclude CVS --exclude TAGS )