diff options
Diffstat (limited to '3rdparty/tinygl-0.4-ugfx/Makefile')
-rw-r--r-- | 3rdparty/tinygl-0.4-ugfx/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3rdparty/tinygl-0.4-ugfx/Makefile b/3rdparty/tinygl-0.4-ugfx/Makefile new file mode 100644 index 00000000..b313cddd --- /dev/null +++ b/3rdparty/tinygl-0.4-ugfx/Makefile @@ -0,0 +1,15 @@ +include config.mk + +all: + ( for f in $(DIRS); do ( cd $$f ; make all ) || exit 1 ; done ) + +clean: + rm -f *~ lib/libTinyGL.a include/GL/*~ TAGS + ( for f in $(DIRS); do ( cd $$f ; make clean ; ) done ) + +install: + ( for f in $(DIRS); do ( cd $$f ; make install ; ) done ) + + +tar: + ( cd .. ; tar zcvf TinyGL-0.4.tar.gz TinyGL --exclude CVS --exclude TAGS ) |