diff options
author | kaa <kaa@disroot.org> | 2023-11-19 00:56:10 -0800 |
---|---|---|
committer | kaa <kaa@disroot.org> | 2023-11-19 00:56:10 -0800 |
commit | c11b26e1f75b643997787b76f5181731058a28f9 (patch) | |
tree | d186d74acbe892e17b323a884e49868ed25532fd /makefile | |
parent | 5a30f14c78f7f82c41680b983bea4ce2fa938226 (diff) |
Basis for directory listing and file download.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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) |