diff options
author | Brian Paul <[email protected]> | 2002-10-05 18:30:46 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-10-05 18:30:46 +0000 |
commit | 568774076223d2612637fd433b41f8a9f7a70da9 (patch) | |
tree | f28bb214d29f1c9aec81b033080b56ee6fcc2e5f | |
parent | 21666e3db410d3ab9c7e4b18a3c29ae78a04fa95 (diff) |
added pbinfo and pbdemo programs
-rw-r--r-- | progs/xdemos/Makefile.X11 | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/progs/xdemos/Makefile.X11 b/progs/xdemos/Makefile.X11 index 8340bc1c785..4f5a1e13ca8 100644 --- a/progs/xdemos/Makefile.X11 +++ b/progs/xdemos/Makefile.X11 @@ -1,8 +1,8 @@ -# $Id: Makefile.X11,v 1.12 2002/01/30 21:54:37 brianp Exp $ +# $Id: Makefile.X11,v 1.13 2002/10/05 18:30:46 brianp Exp $ # Mesa 3-D graphics library # Version: 4.1 -# Copyright (C) 1995-2001 Brian Paul +# Copyright (C) 1995-2002 Brian Paul # Makefile for non-GLUT (X11, SVGA, etc) demo programs @@ -24,6 +24,8 @@ PROGS = glthreads \ glxpixmap \ manywin \ offset \ + pbinfo \ + pbdemo \ wincopy \ xdemo \ xfont @@ -66,3 +68,18 @@ exec: $(PROGS) include ../Make-config +pbinfo: pbinfo.o pbutil.o + $(CC) pbinfo.o pbutil.o $(GL_LIBS) -o $@ + +pbdemo: pbdemo.o pbutil.o + $(CC) pbdemo.o pbutil.o $(GL_LIBS) -o $@ + +pbinfo.o: pbinfo.c pbutil.h + $(CC) -c -I. -I$(INCDIR) $(CFLAGS) $< + +pbdemo.o: pbdemo.c pbutil.h + $(CC) -c -I. -I$(INCDIR) $(CFLAGS) $< + +pbutil.o: pbutil.c pbutil.h + $(CC) -c -I. -I$(INCDIR) $(CFLAGS) $< + |