summaryrefslogtreecommitdiff
path: root/progs/demos/Makefile.X11
diff options
context:
space:
mode:
Diffstat (limited to 'progs/demos/Makefile.X11')
-rw-r--r--progs/demos/Makefile.X11101
1 files changed, 0 insertions, 101 deletions
diff --git a/progs/demos/Makefile.X11 b/progs/demos/Makefile.X11
deleted file mode 100644
index a26ed3d398..0000000000
--- a/progs/demos/Makefile.X11
+++ /dev/null
@@ -1,101 +0,0 @@
-# Makefile for GLUT-based demo programs
-
-
-##### MACROS #####
-
-TOP = ../..
-INCDIR = $(TOP)/include
-LIBDIR = $(TOP)/lib
-
-LIBS = -L$(LIBDIR) $(APP_LIB_DEPS)
-
-OSMESA_LIBS = -L$(LIBDIR) -lglut -lOSMesa -lGLU -lGL $(APP_LIB_DEPS)
-
-LIB_DEP = $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(GLU_LIB) $(LIBDIR)/$(GLUT_LIB)
-
-PROGS = \
- arbfplight \
- arbocclude \
- bounce \
- clearspd \
- cubemap \
- drawpix \
- fire \
- fplight \
- gamma \
- gears \
- geartrain \
- glinfo \
- gloss \
- gltestperf \
- glutfx \
- isosurf \
- ipers \
- lodbias \
- morph3d \
- multiarb \
- occlude \
- osdemo \
- paltex \
- pixeltex \
- pointblast \
- ray \
- readpix \
- reflect \
- renormal \
- shadowtex \
- spectex \
- spriteblast \
- stex3d \
- teapot \
- terrain \
- tessdemo \
- texcyl \
- texdown \
- texenv \
- texobj \
- trispd \
- tunnel \
- tunnel2 \
- winpos
-
-
-##### RULES #####
-
-.SUFFIXES:
-.SUFFIXES: .c
-
-
-# make executable from .c file:
-.c: $(LIB_DEP)
- $(CC) -I$(INCDIR) $(CFLAGS) $< $(LIBS) -o $@
-
-# special case: need the -lOSMesa library:
-osdemo: osdemo.c
- $(CC) -I$(INCDIR) $(CFLAGS) osdemo.c $(OSMESA_LIBS) -o $@
-
-
-##### TARGETS #####
-
-default:
- @echo "Specify a target configuration"
-
-clean:
- -rm -f *.o *~
-
-realclean:
- -rm -f $(PROGS)
- -rm -f *.o *~
- -rm -f readtex.[ch]
-
-targets: readtex.c readtex.h $(PROGS)
-
-
-readtex.c:
- cp $(TOP)/progs/util/readtex.c .
-
-readtex.h:
- cp $(TOP)/progs/util/readtex.h .
-
-
-include $(TOP)/Make-config