mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-05 22:43:39 +00:00
TinyGL example
This commit is contained in:
parent
7313047fd1
commit
065d2c64aa
72 changed files with 12965 additions and 0 deletions
15
apps/tinygl/src/TinyGL/Makefile
Normal file
15
apps/tinygl/src/TinyGL/Makefile
Normal file
|
|
@ -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 /tmp/TinyGL-0.4.1.tar.gz TinyGL --exclude .svn --exclude TAGS )
|
||||
Loading…
Add table
Add a link
Reference in a new issue