mirror of
https://codeberg.org/ACM/TinyGL-C89.git
synced 2025-08-17 05:03:32 -04:00
Add C89 support
Allow compilation from C89 compilers.
This commit is contained in:
parent
fb4cb83981
commit
9a779bf1a1
66 changed files with 12202 additions and 0 deletions
17
Makefile
Normal file
17
Makefile
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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 )
|
||||
Loading…
Add table
Add a link
Reference in a new issue