1
0
src/cat/Makefile
2023-08-19 10:51:41 -04:00

8 lines
68 B
Makefile

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