From 70ac601ed1ebecea255317830f6c53aa3041ef32 Mon Sep 17 00:00:00 2001 From: Stefan Date: Fri, 7 Jun 2024 19:23:29 +0200 Subject: [PATCH] Update makefile --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 4b9fc09..e3bcc7e 100644 --- a/makefile +++ b/makefile @@ -7,7 +7,7 @@ all: tek4010 tek4010: src/help.txt src/main.c src/main.h src/tube.c src/tube.h src/tek4010.c src/ards.c sed 's/\"/\\\"/g; s/$$/\\n"/; s/^/"/; 1s/^/const char *helpStr =\n/;' src/help.txt > src/help.h echo ";" >> src/help.h - $(CC) -o $@ src/main.c src/tube.c src/tek4010.c src/ards.c $(LIBS) $(CFLAGS) + $(CC) -o tek4010 src/main.c src/tube.c src/tek4010.c src/ards.c $(LIBS) $(CFLAGS) check: tek4010 ./tek4010 demos/demo.sh