7 lines
79 B
Makefile
7 lines
79 B
Makefile
TARGETS := springer
|
|
CC := gcc -Wall
|
|
|
|
all: $(TARGETS)
|
|
|
|
clean:
|
|
rm -f $(TARGETS)
|