new file (bug 1026109)

This commit is contained in:
Brian Paul
2004-09-10 22:11:33 +00:00
parent 0a55db041d
commit 5cc7111f72
+52
View File
@@ -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