mirror of
https://codeberg.org/ACM/TinyGL-C89.git
synced 2025-08-17 05:03:32 -04:00
17 lines
388 B
Makefile
17 lines
388 B
Makefile
include config.mk
|
|
|
|
CFLAGS = -std=c89 -pedantic
|
|
|
|
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 /tmp/TinyGL-0.4.1.tar.gz TinyGL --exclude .svn --exclude TAGS )
|