aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/tinygl-0.4-ugfx/BeOS/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/tinygl-0.4-ugfx/BeOS/Makefile')
-rw-r--r--3rdparty/tinygl-0.4-ugfx/BeOS/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/3rdparty/tinygl-0.4-ugfx/BeOS/Makefile b/3rdparty/tinygl-0.4-ugfx/BeOS/Makefile
new file mode 100644
index 00000000..0113b3f6
--- /dev/null
+++ b/3rdparty/tinygl-0.4-ugfx/BeOS/Makefile
@@ -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