2006-11-25 11:56:37 -07:00
|
|
|
# progs/demos/Makefile
|
|
|
|
|
|
|
|
TOP = ../..
|
|
|
|
include $(TOP)/configs/current
|
|
|
|
|
|
|
|
INCDIR = $(TOP)/include
|
|
|
|
|
2008-11-02 07:58:06 -07:00
|
|
|
OSMESA_LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(OSMESA_LIB) $(APP_LIB_DEPS)
|
2006-11-25 11:56:37 -07:00
|
|
|
|
2008-11-02 07:58:06 -07:00
|
|
|
OSMESA16_LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -lOSMesa16 -l$(GLU_LIB) \
|
|
|
|
-l$(GL_LIB) $(APP_LIB_DEPS)
|
2006-11-25 11:56:37 -07:00
|
|
|
|
2008-11-02 07:58:06 -07:00
|
|
|
OSMESA32_LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -lOSMesa32 -l$(GLU_LIB) \
|
|
|
|
-l$(GL_LIB) $(APP_LIB_DEPS)
|
2006-11-25 11:56:37 -07:00
|
|
|
|
2008-11-02 07:58:06 -07:00
|
|
|
LIB_DEP = $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) $(TOP)/$(LIB_DIR)/$(GLU_LIB_NAME) \
|
|
|
|
$(TOP)/$(LIB_DIR)/$(GLUT_LIB_NAME)
|
2006-11-25 11:56:37 -07:00
|
|
|
|
2008-11-02 07:58:06 -07:00
|
|
|
LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) \
|
|
|
|
$(APP_LIB_DEPS)
|
2008-02-12 14:09:25 -07:00
|
|
|
|
2006-11-25 11:56:37 -07:00
|
|
|
PROGS = \
|
|
|
|
osdemo \
|
|
|
|
ostest1
|
|
|
|
|
|
|
|
|
|
|
|
##### RULES #####
|
|
|
|
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .c
|
|
|
|
|
|
|
|
|
|
|
|
# make executable from .c file:
|
|
|
|
.c: $(LIB_DEP) readtex.o
|
2008-02-12 14:09:25 -07:00
|
|
|
$(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) $< readtex.o $(LIBS) -o $@
|
2006-11-25 11:56:37 -07:00
|
|
|
|
|
|
|
|
|
|
|
##### TARGETS #####
|
|
|
|
|
|
|
|
default: readtex.o $(PROGS)
|
|
|
|
|
|
|
|
|
|
|
|
readtex.c: $(TOP)/progs/util/readtex.c
|
|
|
|
cp $< .
|
|
|
|
|
|
|
|
readtex.h: $(TOP)/progs/util/readtex.h
|
|
|
|
cp $< .
|
|
|
|
|
|
|
|
readtex.o: readtex.c readtex.h
|
|
|
|
$(CC) -c -I$(INCDIR) $(CFLAGS) readtex.c
|
|
|
|
|
|
|
|
|
|
|
|
showbuffer.c: $(TOP)/progs/util/showbuffer.c
|
|
|
|
cp $< .
|
|
|
|
|
|
|
|
showbuffer.h: $(TOP)/progs/util/showbuffer.h
|
|
|
|
cp $< .
|
|
|
|
|
|
|
|
showbuffer.o: showbuffer.c showbuffer.h
|
|
|
|
$(CC) -c -I$(INCDIR) $(CFLAGS) showbuffer.c
|
|
|
|
|
|
|
|
|
|
|
|
# special case: need the -lOSMesa library:
|
|
|
|
osdemo: osdemo.c
|
2008-02-12 14:09:25 -07:00
|
|
|
$(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) osdemo.c $(OSMESA_LIBS) -o $@
|
2006-11-25 11:56:37 -07:00
|
|
|
|
|
|
|
# special case: need the -lOSMesa library:
|
|
|
|
ostest1: ostest1.c
|
2008-02-12 14:09:25 -07:00
|
|
|
$(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) ostest1.c $(OSMESA_LIBS) -o $@
|
2006-11-25 11:56:37 -07:00
|
|
|
|
|
|
|
# another special case: need the -lOSMesa16 library:
|
|
|
|
osdemo16: osdemo16.c
|
2008-02-12 14:09:25 -07:00
|
|
|
$(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) osdemo16.c $(OSMESA16_LIBS) -o $@
|
2006-11-25 11:56:37 -07:00
|
|
|
|
|
|
|
# another special case: need the -lOSMesa32 library:
|
|
|
|
osdemo32: osdemo32.c
|
2008-02-12 14:09:25 -07:00
|
|
|
$(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) osdemo32.c $(OSMESA32_LIBS) -o $@
|
2006-11-25 11:56:37 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm -f $(PROGS)
|
|
|
|
-rm -f *.o *~
|
|
|
|
-rm -f readtex.[ch] showbuffer.[ch]
|
|
|
|
-rm -f *.ppm
|
|
|
|
-rm -f osdemo16 osdemo32
|
|
|
|
|
|
|
|
|