Files
third_party_mesa3d/progs/samples/Makefile

33 lines
569 B
Makefile
Raw Normal View History

2004-03-26 15:19:11 +00:00
# progs/samples/Makefile
TOP = ../..
include $(TOP)/configs/current
INCDIR = $(TOP)/include
LIB_DEP = $(LIB_DIR)/$(GL_LIB) $(LIB_DIR)/$(GLU_LIB) $(LIB_DIR)/$(GLUT_LIB)
PROGS = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \
font line logo nurb oglinfo olympic overlay point prim quad select \
shape sphere star stencil stretch texture tri wave
##### RULES #####
.SUFFIXES:
.SUFFIXES: .c
.c: $(LIB_DEP)
$(CC) -I$(INCDIR) $(CFLAGS) $< $(APP_LIB_DEPS) -o $@
##### TARGETS #####
default: $(PROGS)
2004-03-26 20:31:05 +00:00
clean:
2004-03-26 15:19:11 +00:00
-rm -f $(PROGS)
-rm -f *.o *~