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
16
BeOS/Makefile
Normal file
16
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