CS110L-Lab/week3/inspect-fds/Makefile
2020-10-07 15:58:20 -07:00

11 lines
131 B
Makefile

SRCS = $(wildcard *.c)
PROGS = $(patsubst %.c,%,$(SRCS))
all: $(PROGS)
%: %.c
$(CC) $(CFLAGS) -o $@ $<
clean:
rm -f $(PROGS)