1
0
src/str/Makefile
2023-08-17 17:51:47 -04:00

13 lines
137 B
Makefile

RM = rm -f
TARGETS = str
all: $(TARGETS)
str: str.c
$(CC) -DINCLUDE_ISVALUE=1 -o $@ $@.c
clean:
$(RM) $(TARGETS)
.PHONY: all clean