From de0ee3187c8fffb52327f9a5680a3eafea872276 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 26 Mar 2004 15:19:11 +0000 Subject: New Makefile system --- progs/xdemos/Makefile | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 progs/xdemos/Makefile (limited to 'progs/xdemos/Makefile') diff --git a/progs/xdemos/Makefile b/progs/xdemos/Makefile new file mode 100644 index 0000000000..0904ee3445 --- /dev/null +++ b/progs/xdemos/Makefile @@ -0,0 +1,79 @@ +# progs/xdemos/Makefile + +TOP = ../../ +include $(TOP)/configs/current + + +INCDIR = $(TOP)/include + +LIBS = -L$(LIB_DIR) $(APP_LIB_DEPS) + +LIB_DEP = $(LIB_DIR)/$(GL_LIB) $(LIB_DIR)/$(GLU_LIB) + +PROGS = glthreads \ + glxdemo \ + glxgears \ + glxheads \ + glxinfo \ + glxpixmap \ + glxpbdemo \ + glxswapcontrol \ + manywin \ + offset \ + pbinfo \ + pbdemo \ + wincopy \ + xdemo \ + xfont \ + xrotfontdemo + + + +##### RULES ##### + +.SUFFIXES: +.SUFFIXES: .c + +.c: $(LIB_DEP) + $(CC) -I$(INCDIR) $(CFLAGS) $< $(LIBS) -o $@ + + +##### TARGETS ##### + +default: $(PROGS) + + +clean: + -rm -f *.o *~ + +realclean: + -rm -f $(PROGS) + -rm -f *.o *~ + + +# special cases +pbinfo: pbinfo.o pbutil.o + $(CC) pbinfo.o pbutil.o $(LIBS) -o $@ + +pbdemo: pbdemo.o pbutil.o + $(CC) pbdemo.o pbutil.o $(LIBS) -o $@ + +pbinfo.o: pbinfo.c pbutil.h + $(CC) -c -I. -I$(INCDIR) $(CFLAGS) pbinfo.c + +pbdemo.o: pbdemo.c pbutil.h + $(CC) -c -I. -I$(INCDIR) $(CFLAGS) pbdemo.c + +pbutil.o: pbutil.c pbutil.h + $(CC) -c -I. -I$(INCDIR) $(CFLAGS) pbutil.c + + +xrotfontdemo: xrotfontdemo.o xuserotfont.o + $(CC) xrotfontdemo.o xuserotfont.o $(LIBS) -o $@ + +xuserotfont.o: xuserotfont.c xuserotfont.h + $(CC) -c -I. -I$(INCDIR) $(CFLAGS) xuserotfont.c + +xrotfontdemo.o: xrotfontdemo.c xuserotfont.h + $(CC) -c -I. -I$(INCDIR) $(CFLAGS) xrotfontdemo.c + -- cgit v1.2.3