1
0

rename nonzero to argued

This commit is contained in:
dtb
2022-10-23 01:53:58 -04:00
parent 5e7fd5b6c9
commit 1f9786233d
6 changed files with 37 additions and 52 deletions

12
argued/Makefile Normal file
View File

@@ -0,0 +1,12 @@
RM = rm -f
TARGETS = argued
all: $(TARGETS)
%: %.c
$(CC) -o $@ $@.c
clean:
$(RM) $(TARGETS)
.PHONY: all clean