TinyGL example

This commit is contained in:
Toby Jaffey 2025-12-14 14:45:10 +00:00
parent 7313047fd1
commit 065d2c64aa
72 changed files with 12965 additions and 0 deletions

View 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