From c11b26e1f75b643997787b76f5181731058a28f9 Mon Sep 17 00:00:00 2001 From: kaa Date: Sun, 19 Nov 2023 00:56:10 -0800 Subject: Basis for directory listing and file download. --- makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index c17d9af..15425c0 100644 --- a/makefile +++ b/makefile @@ -3,9 +3,10 @@ CFLAGS = -std=c89 -g -Wall #CC = tcc #CFLAGS = -Wall -g LDFLAGS = -static -all: canup +OUT = canup testing canls +all: $(OUT) .c: $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< clean: - rm canup + rm $(OUT) -- cgit v1.2.3