mesa/progs/xdemos/Makefile

114 lines
2.4 KiB
Makefile
Raw Normal View History

2004-03-26 15:19:11 +00:00
# progs/xdemos/Makefile
TOP = ../..
2004-03-26 15:19:11 +00:00
include $(TOP)/configs/current
INCDIR = $(TOP)/include
LIB_DEP = $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME)
2004-03-26 15:19:11 +00:00
LIBS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) $(APP_LIB_DEPS)
PROGS = \
corender \
glsync \
glthreads \
2004-03-26 15:19:11 +00:00
glxdemo \
glxgears \
glxgears_fbconfig \
glxgears_pixmap \
glxcontexts \
2004-03-26 15:19:11 +00:00
glxheads \
glxinfo \
glxpixmap \
glxpbdemo \
glxsnoop \
2004-03-26 15:19:11 +00:00
glxswapcontrol \
manywin \
multictx \
2004-03-26 15:19:11 +00:00
offset \
2005-07-19 16:27:03 +01:00
overlay \
2004-03-26 15:19:11 +00:00
pbinfo \
pbdemo \
sharedtex \
sharedtex_mt \
2007-05-19 15:28:41 +01:00
texture_from_pixmap \
2004-03-26 15:19:11 +00:00
wincopy \
xfont \
xrotfontdemo
# Don't build these by default because of extra library dependencies
EXTRA_PROGS = \
shape \
yuvrect_client \
xdemo
2004-03-26 15:19:11 +00:00
##### RULES #####
.SUFFIXES:
.SUFFIXES: .c
.c: $(LIB_DEP)
$(APP_CC) -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) $(LDFLAGS) $< $(LIBS) -o $@
2004-03-26 15:19:11 +00:00
##### TARGETS #####
default: $(PROGS)
extra: $(EXTRA_PROGS)
2004-03-26 15:19:11 +00:00
clean:
-rm -f $(PROGS) $(EXTRA_PROGS)
2004-03-26 15:19:11 +00:00
-rm -f *.o *~
# special cases
pbinfo: pbinfo.o pbutil.o
$(APP_CC) $(CFLAGS) $(LDFLAGS) pbinfo.o pbutil.o $(LIBS) -o $@
2004-03-26 15:19:11 +00:00
pbdemo: pbdemo.o pbutil.o
$(APP_CC) $(CFLAGS) $(LDFLAGS) pbdemo.o pbutil.o $(LIBS) -o $@
2004-03-26 15:19:11 +00:00
pbinfo.o: pbinfo.c pbutil.h
$(APP_CC) -c -I. -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) pbinfo.c
2004-03-26 15:19:11 +00:00
pbdemo.o: pbdemo.c pbutil.h
$(APP_CC) -c -I. -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) pbdemo.c
2004-03-26 15:19:11 +00:00
pbutil.o: pbutil.c pbutil.h
$(APP_CC) -c -I. -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) pbutil.c
2004-03-26 15:19:11 +00:00
glxgears_fbconfig: glxgears_fbconfig.o pbutil.o
$(APP_CC) $(CFLAGS) $(LDFLAGS) glxgears_fbconfig.o pbutil.o $(LIBS) -o $@
glxgears_fbconfig.o: glxgears_fbconfig.c pbutil.h
$(APP_CC) -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) -c -I. $(CFLAGS) glxgears_fbconfig.c
2004-03-26 15:19:11 +00:00
xrotfontdemo: xrotfontdemo.o xuserotfont.o
$(APP_CC) $(CFLAGS) $(LDFLAGS) xrotfontdemo.o xuserotfont.o $(LIBS) -o $@
2004-03-26 15:19:11 +00:00
xuserotfont.o: xuserotfont.c xuserotfont.h
$(APP_CC) -c -I. -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) xuserotfont.c
2004-03-26 15:19:11 +00:00
xrotfontdemo.o: xrotfontdemo.c xuserotfont.h
$(APP_CC) -c -I. -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) xrotfontdemo.c
2004-03-26 15:19:11 +00:00
corender: corender.o ipc.o
$(APP_CC) $(CFLAGS) $(LDFLAGS) corender.o ipc.o $(LIBS) -o $@
corender.o: corender.c ipc.h
$(APP_CC) -c -I. -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) corender.c
ipc.o: ipc.c ipc.h
$(APP_CC) -c -I. -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) ipc.c
yuvrect_client: yuvrect_client.c
$(APP_CC) -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) $< $(LDFLAGS) $(LIBS) -l$(GLU_LIB) -o $@