6 lines
71 B
Makefile
6 lines
71 B
Makefile
EXEC = list
|
|
SRC = $(wildcard *.c)
|
|
|
|
$(EXEC): $(SRC)
|
|
gcc -o $@ $^ -Wall
|