8 lines
78 B
Makefile
8 lines
78 B
Makefile
streq: streq.c
|
|
$(CC) -g -o streq streq.c
|
|
|
|
clean:
|
|
rm -f streq
|
|
|
|
.PHONY: clean
|