new file (bug 1026109)
authorBrian Paul <brian.paul@tungstengraphics.com>
Fri, 10 Sep 2004 22:11:33 +0000 (22:11 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 10 Sep 2004 22:11:33 +0000 (22:11 +0000)
src/glut/ggi/Makefile [new file with mode: 0644]

diff --git a/src/glut/ggi/Makefile b/src/glut/ggi/Makefile
new file mode 100644 (file)
index 0000000..ebd8dc6
--- /dev/null
@@ -0,0 +1,52 @@
+# Makefile for GLUT for ggi
+
+TOP = ../../..
+
+include $(TOP)/configs/current
+
+
+##### MACROS #####
+
+GLUT_MAJOR = 3
+GLUT_MINOR = 7
+GLUT_TINY = 1
+
+SOURCES = \
+       ggiglut.c
+
+
+OBJECTS = $(SOURCES:.c=.o)
+
+
+##### RULES #####
+
+.c.o:
+       $(CC) -c -I$(TOP)/include $(CFLAGS) $(GLUT_CFLAGS) $<
+
+
+
+##### TARGETS #####
+
+default: $(LIB_DIR)/$(GLUT_LIB_NAME)
+
+
+# Make the library
+$(LIB_DIR)/$(GLUT_LIB_NAME): depend $(OBJECTS)
+       CC=$(CC) CXX=$(CXX) $(TOP)/bin/mklib -o $(GLUT_LIB) \
+               -major $(GLUT_MAJOR) -minor $(GLUT_MINOR) \
+               -patch $(GLUT_TINY) $(MKLIB_OPTIONS) -install $(LIB_DIR) \
+               $(GLUT_LIB_DEPS) $(OBJECTS)
+
+
+clean:
+       -rm -f *.o *~
+       -rm -f *.lo
+       -rm -f *.la
+       -rm -rf .libs
+
+
+depend: $(SOURCES)
+       touch depend
+       $(MKDEP) $(MKDEP_OPTIONS) -I$(TOP)/include $(SOURCES)
+
+include depend