summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorkaa <kaa@disroot.org>2023-11-19 00:56:10 -0800
committerkaa <kaa@disroot.org>2023-11-19 00:56:10 -0800
commitc11b26e1f75b643997787b76f5181731058a28f9 (patch)
treed186d74acbe892e17b323a884e49868ed25532fd /makefile
parent5a30f14c78f7f82c41680b983bea4ce2fa938226 (diff)
Basis for directory listing and file download.
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 3 insertions, 2 deletions
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)