1
0
This commit is contained in:
dtb
2023-12-15 21:35:06 -07:00
parent 53a74e7c46
commit 18305d0589
3 changed files with 50 additions and 29 deletions

View File

@@ -1,12 +1,2 @@
RM = rm -f
TARGETS = str
all: $(TARGETS)
str: str.c
$(CC) -DINCLUDE_ISVALUE=1 -o $@ $@.c
clean:
$(RM) $(TARGETS)
.PHONY: all clean
$(CC) -include isvalue.c -o $@ $@.c