From 0823979013457bc1dfae1087e027e154852b79d5 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Thu, 16 Jul 2026 23:21:15 +0200 Subject: Beispiel für die Streaming-API hinzugefügt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index 4ce05bc..312721e 100644 --- a/makefile +++ b/makefile @@ -1,14 +1,20 @@ include config.mk +STREAM=bin/stream +STREAM_OBJ_FILES=obj/stream.o + SIMPLE=bin/simple SIMPLE_OBJ_FILES=obj/simple.o -release: $(SIMPLE) +release: $(STREAM) $(SIMPLE) release: CFLAGS+=-DNDEBUG -O2 -debug: $(SIMPLE) +debug: $(STREAM) $(SIMPLE) debug: CFLAGS+=-g +$(STREAM): $(STREAM_OBJ_FILES) | bin + cc $(LDFLAGS) $^ -o $@ + $(SIMPLE): $(SIMPLE_OBJ_FILES) | bin cc $(LDFLAGS) $^ -o $@ -- cgit v1.3