Files
dsa/assignment1/problem1/Makefile
2021-03-28 22:08:58 +09:00

6 lines
71 B
Makefile

EXEC = list
SRC = $(wildcard *.c)
$(EXEC): $(SRC)
gcc -o $@ $^ -Wall