aboutsummaryrefslogtreecommitdiff
path: root/examples/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile
index c2d2176..ee05725 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -7,7 +7,7 @@ GLINC = -I$(TOP)/include
LIBGL = $(TOP)/lib/libGL.a
LIBS = -lm
-PROGS = cube rave
+PROGS = cube rave teapot
.PHONY: all clean
all: $(PROGS)
@@ -15,6 +15,8 @@ all: $(PROGS)
$(PROGS): %: %.c $(LIBGL)
$(CC) $(CFLAGS) $(GLINC) $< $(LIBGL) $(LIBS) -o $@
+teapot: teapot_data.inc
+
clean:
rm -f $(PROGS)