Files
third_party_mesa3d/progs/xdemos/Makefile

83 lines
1.5 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
2004-03-26 23:58:08 +00:00
LIB_DEP = $(LIB_DIR)/$(GL_LIB_NAME) $(LIB_DIR)/$(GLU_LIB_NAME)
2004-03-26 15:19:11 +00:00
PROGS = glthreads \
glxdemo \
glxgears \
glxgears_fbconfig \
glxcontexts \
2004-03-26 15:19:11 +00:00
glxheads \
glxinfo \
glxpixmap \
glxpbdemo \
glxswapcontrol \
manywin \
offset \
pbinfo \
pbdemo \
wincopy \
xdemo \
xfont \
xrotfontdemo \
yuvrect_client
2004-03-26 15:19:11 +00:00
##### RULES #####
.SUFFIXES:
.SUFFIXES: .c
.c: $(LIB_DEP)
2004-03-26 23:58:08 +00:00
$(CC) -I$(INCDIR) $(CFLAGS) $< $(APP_LIB_DEPS) -o $@
2004-03-26 15:19:11 +00:00
##### TARGETS #####
default: $(PROGS)
clean:
-rm -f $(PROGS)
-rm -f *.o *~
# special cases
pbinfo: pbinfo.o pbutil.o
$(CC) $(CFLAGS) pbinfo.o pbutil.o $(APP_LIB_DEPS) -o $@
2004-03-26 15:19:11 +00:00
pbdemo: pbdemo.o pbutil.o
$(CC) $(CFLAGS) pbdemo.o pbutil.o $(APP_LIB_DEPS) -o $@
2004-03-26 15:19:11 +00:00
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
glxgears_fbconfig: glxgears_fbconfig.o pbutil.o
$(CC) $(CFLAGS) glxgears_fbconfig.o pbutil.o $(APP_LIB_DEPS) -o $@
glxgears_fbconfig.o: glxgears_fbconfig.c pbutil.h
$(CC) $(CFLAGS) -c -I. -I$(INCDIR) $(CFLAGS) glxgears_fbconfig.c
2004-03-26 15:19:11 +00:00
xrotfontdemo: xrotfontdemo.o xuserotfont.o
$(CC) $(CFLAGS) xrotfontdemo.o xuserotfont.o $(APP_LIB_DEPS) -o $@
2004-03-26 15:19:11 +00:00
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