summaryrefslogtreecommitdiff
path: root/progs/demos/Makefile
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-05-21 09:32:38 -0700
committerEric Anholt <eric@anholt.net>2010-05-21 12:20:39 -0700
commit68fc4b415e322f6744299e39864fbc377c6eff74 (patch)
tree4bafffd8b0105174f3c5c0ae327a005be9145990 /progs/demos/Makefile
parente4f4489e3fc0b36d72821b55794fb843b2b7fa5f (diff)
Remove demos that have moved to git+ssh://git.freedesktop.org/git/mesa/demos.
The remaining programs are ones I've had difficulty finding a build environment for to make the build system or are unit tests that should probably live next to their code instead. Hopefully people can bring over the build for remaining pieces they care about.
Diffstat (limited to 'progs/demos/Makefile')
-rw-r--r--progs/demos/Makefile173
1 files changed, 0 insertions, 173 deletions
diff --git a/progs/demos/Makefile b/progs/demos/Makefile
deleted file mode 100644
index a13a272ce9..0000000000
--- a/progs/demos/Makefile
+++ /dev/null
@@ -1,173 +0,0 @@
-# progs/demos/Makefile
-
-TOP = ../..
-include $(TOP)/configs/current
-
-INCDIR = $(TOP)/include
-
-LIB_DEP = $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) $(TOP)/$(LIB_DIR)/$(GLU_LIB_NAME) \
- $(TOP)/$(LIB_DIR)/$(GLUT_LIB_NAME)
-
-LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLEW_LIB) -l$(GLU_LIB) -l$(GL_LIB) \
- $(APP_LIB_DEPS)
-
-PROGS = \
- arbfplight \
- arbfslight \
- arbocclude \
- arbocclude2 \
- bounce \
- clearspd \
- copypix \
- cubemap \
- dinoshade \
- dissolve \
- drawpix \
- engine \
- fbo_firecube \
- fbotexture \
- fire \
- fogcoord \
- fplight \
- fslight \
- gamma \
- gearbox \
- gears \
- geartrain \
- glinfo \
- gloss \
- gltestperf \
- isosurf \
- ipers \
- lodbias \
- morph3d \
- multiarb \
- paltex \
- pointblast \
- projtex \
- rain \
- ray \
- readpix \
- reflect \
- renormal \
- shadowtex \
- singlebuffer \
- spectex \
- spriteblast \
- stex3d \
- teapot \
- terrain \
- tessdemo \
- texcyl \
- texenv \
- textures \
- trispd \
- tunnel \
- tunnel2 \
- vao_demo \
- winpos
-
-
-##### RULES #####
-
-.SUFFIXES:
-.SUFFIXES: .c
-.SUFFIXES: .cxx
-
-# make executable from .c file:
-.c: $(LIB_DEP) readtex.o
- $(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) $< readtex.o $(LIBS) -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) $(CFLAGS) $(LDFLAGS) reflect.o showbuffer.o readtex.o $(LIBS) -o $@
-
-reflect.o: reflect.c showbuffer.h
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) reflect.c
-
-
-gloss: gloss.o trackball.o readtex.o
- $(APP_CC) $(CFLAGS) $(LDFLAGS) gloss.o trackball.o readtex.o $(LIBS) -o $@
-
-gloss.o: gloss.c trackball.h
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) gloss.c
-
-
-engine: engine.o trackball.o readtex.o
- $(APP_CC) $(CFLAGS) $(LDFLAGS) engine.o trackball.o readtex.o $(LIBS) -o $@
-
-engine.o: engine.c trackball.h
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) engine.c
-
-
-fbotexture: fbotexture.o
- $(APP_CC) $(CFLAGS) $(LDFLAGS) fbotexture.o $(LIBS) -o $@
-
-fbotexture.o: fbotexture.c extfuncs.h
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) fbotexture.c
-
-
-fslight: fslight.o
- $(APP_CC) $(CFLAGS) $(LDFLAGS) fslight.o $(LIBS) -o $@
-
-fslight.o: fslight.c extfuncs.h
- $(APP_CC) -c -I$(INCDIR) $(CFLAGS) fslight.c
-
-rain: particles.o rain.o readtex.o
- $(CXX) $(CXXFLAGS) $(LDFLAGS) $^ $(LIBS) -o $@
-
-rain.o: rain.cxx readtex.h
- $(CXX) -c -I$(INCDIR) $(CXXFLAGS) $<
-
-particles.o: particles.cxx
- $(CXX) -c -I$(INCDIR) $(CXXFLAGS) $<
-
-
-viewdds: viewdds.c
- $(CC) -I$(INCDIR) $(CFLAGS) $< readtex.o $(LIBS) -L. -lgltc -o $@
-
-
-clean:
- -rm -f $(PROGS)
- -rm -f *.o *~
- -rm -f readtex.[ch] showbuffer.[ch]