Don't build yuvrect_client by default

Added 'extra' rule to build optional yuvrect_client, shape, xdemo programs
This commit is contained in:
Brian 2008-01-22 07:56:26 -07:00
parent 60dd3b1d9a
commit 6bd32cbcf3
1 changed files with 17 additions and 6 deletions

View File

@ -6,9 +6,9 @@ include $(TOP)/configs/current
INCDIR = $(TOP)/include
LIB_DEP = $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) $(TOP)/$(LIB_DIR)/$(GLU_LIB_NAME)
LIB_DEP = $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME)
LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) $(APP_LIB_DEPS)
LIBS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) $(APP_LIB_DEPS)
PROGS = \
corender \
@ -31,10 +31,14 @@ PROGS = \
texture_from_pixmap \
wincopy \
xfont \
xrotfontdemo \
yuvrect_client
xrotfontdemo
# Don't build these by default because of extra library dependencies
EXTRA_PROGS = \
shape \
yuvrect_client \
xdemo
# omit this XMesa API demo: xdemo
##### RULES #####
@ -51,8 +55,11 @@ PROGS = \
default: $(PROGS)
extra: $(EXTRA_PROGS)
clean:
-rm -f $(PROGS)
-rm -f $(PROGS) $(EXTRA_PROGS)
-rm -f *.o *~
@ -95,3 +102,7 @@ corender.o: corender.c ipc.h
ipc.o: ipc.c ipc.h
$(CC) -c -I. -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) ipc.c
yuvrect_client: yuvrect_client.c
$(CC) -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) $< $(LDFLAGS) $(LIBS) -l$(GLU_LIB) -o $@