aboutsummaryrefslogtreecommitdiff
path: root/examples/Makefile
diff options
context:
space:
mode:
authorRadosław Kujawa <radoslaw.kujawa@c0ff33.net>2026-07-18 00:14:46 +0200
committerRadosław Kujawa <radoslaw.kujawa@c0ff33.net>2026-07-18 00:14:46 +0200
commitb3d6f168c17ebd60acc673ddfb2e71494054b599 (patch)
tree8b62eaa189ce6d738604ab0a4ad02b8f2be2415b /examples/Makefile
parent14f2715c3d07953168cda37eab60db4d6d05e046 (diff)
TEAPOT TIME!
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)