From b3d6f168c17ebd60acc673ddfb2e71494054b599 Mon Sep 17 00:00:00 2001 From: Radosław Kujawa Date: Sat, 18 Jul 2026 00:14:46 +0200 Subject: TEAPOT TIME! --- examples/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'examples/Makefile') 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) -- cgit