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
16
apps/tinygl/src/TinyGL/BeOS/Makefile
Normal file
16
apps/tinygl/src/TinyGL/BeOS/Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
OBJS=GLView.o
|
||||
INCLUDES = -I../include
|
||||
LIB = libGLView.a
|
||||
|
||||
all: $(LIB)
|
||||
|
||||
$(LIB): $(OBJS)
|
||||
rm -f $(LIB)
|
||||
ar rcs $(LIB) $(OBJS)
|
||||
cp $(LIB) ../lib
|
||||
|
||||
clean:
|
||||
rm -f *~ *.o *.a
|
||||
|
||||
GLView.o: GLView.cpp GLView.h
|
||||
$(CC) $(CFLAGS) $(INCLUDES) -c GLView.cpp
|
||||
Loading…
Add table
Add a link
Reference in a new issue