1
0

more changes

This commit is contained in:
dtb
2023-08-17 17:51:47 -04:00
parent 4f7d204f5a
commit aa110975ae
3 changed files with 13 additions and 21 deletions

View File

@@ -3,13 +3,10 @@ TARGETS = str
all: $(TARGETS)
str: %.c
$(CC) -o $@ $@.c
str: str.c
$(CC) -DINCLUDE_ISVALUE=1 -o $@ $@.c
clean:
$(RM) $(TARGETS)
sane: str.c ../include/sysexits.h
$(CC) -DDONT_USE_SYSTEM_SYSEXITS -o str str.c
.PHONY: all clean sane
.PHONY: all clean