123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- # progs/demos/Makefile
-
- TOP = ../..
- include $(TOP)/configs/current
-
- INCDIR = $(TOP)/include
-
- OSMESA_LIBS = -L$(TOP)/$(LIB_DIR) -lglut -lOSMesa -lGLU -lGL $(APP_LIB_DEPS)
-
- OSMESA16_LIBS = -L$(TOP)/$(LIB_DIR) -lglut -lOSMesa16 -lGLU -lGL $(APP_LIB_DEPS)
-
- OSMESA32_LIBS = -L$(TOP)/$(LIB_DIR) -lglut -lOSMesa32 -lGLU -lGL $(APP_LIB_DEPS)
-
- LIB_DEP = $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) $(TOP)/$(LIB_DIR)/$(GLU_LIB_NAME) $(TOP)/$(LIB_DIR)/$(GLUT_LIB_NAME)
-
- PROGS = \
- arbfplight \
- arbfslight \
- arbocclude \
- bounce \
- clearspd \
- cubemap \
- drawpix \
- engine \
- fire \
- fogcoord \
- fplight \
- fslight \
- gamma \
- gearbox \
- gears \
- geartrain \
- glinfo \
- gloss \
- glslnoise \
- gltestperf \
- glutfx \
- isosurf \
- ipers \
- lodbias \
- morph3d \
- multiarb \
- paltex \
- pointblast \
- ray \
- readpix \
- reflect \
- renormal \
- shadowtex \
- singlebuffer \
- streaming_rect \
- spectex \
- spriteblast \
- stex3d \
- teapot \
- terrain \
- tessdemo \
- texcyl \
- texdown \
- texenv \
- texobj \
- trispd \
- tunnel \
- tunnel2 \
- vao_demo \
- winpos
-
-
- ##### RULES #####
-
- .SUFFIXES:
- .SUFFIXES: .c
-
-
- # make executable from .c file:
- .c: $(LIB_DEP) readtex.o
- $(APP_CC) -I$(INCDIR) $(CFLAGS) $< readtex.o $(APP_LIB_DEPS) -o $@
-
-
- ##### TARGETS #####
-
- default: $(PROGS)
-
- $(PROGS): readtex.o
-
- readtex.c: $(TOP)/progs/util/readtex.c
- cp $< .
-
- readtex.h: $(TOP)/progs/util/readtex.h
- cp $< .
-
- readtex.o: readtex.c readtex.h
- $(APP_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
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) showbuffer.c
-
-
- trackball.c: $(TOP)/progs/util/trackball.c
- cp $< .
-
- trackball.h: $(TOP)/progs/util/trackball.h
- cp $< .
-
- trackball.o: trackball.c trackball.h
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) trackball.c
-
-
- extfuncs.h: $(TOP)/progs/util/extfuncs.h
- cp $< .
-
-
- reflect: reflect.o showbuffer.o readtex.o
- $(APP_CC) reflect.o showbuffer.o readtex.o $(APP_LIB_DEPS) $(ARCH_FLAGS) -o $@
-
- reflect.o: reflect.c showbuffer.h
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) reflect.c
-
-
- shadowtex: shadowtex.o showbuffer.o
- $(APP_CC) shadowtex.o showbuffer.o $(APP_LIB_DEPS) $(ARCH_FLAGS) -o $@
-
- shadowtex.o: shadowtex.c showbuffer.h
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) shadowtex.c
-
-
- gloss: gloss.o trackball.o readtex.o
- $(APP_CC) gloss.o trackball.o readtex.o $(APP_LIB_DEPS) $(ARCH_FLAGS) -o $@
-
- gloss.o: gloss.c trackball.h
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) gloss.c
-
-
- engine: engine.o trackball.o readtex.o
- $(APP_CC) engine.o trackball.o readtex.o $(APP_LIB_DEPS) $(ARCH_FLAGS) -o $@
-
- engine.o: engine.c trackball.h
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) engine.c
-
-
- fslight: fslight.o
- $(APP_CC) fslight.o $(APP_LIB_DEPS) $(ARCH_FLAGS) -o $@
-
- fslight.o: fslight.c extfuncs.h
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) fslight.c
-
-
-
- clean:
- -rm -f $(PROGS)
- -rm -f *.o *~
- -rm -f readtex.[ch] showbuffer.[ch]
|