1
0
src/streq/Makefile
2023-08-11 17:39:29 -04:00

8 lines
78 B
Makefile

streq: streq.c
$(CC) -g -o streq streq.c
clean:
rm -f streq
.PHONY: clean