RM = rm -f
TARGETS = str

all: $(TARGETS)

str: str.c
	$(CC) -DINCLUDE_ISVALUE=1 -o $@ $@.c

clean:
	$(RM) $(TARGETS)

.PHONY: all clean
