CS110L-Lab/proj-1/deet/Makefile
2020-10-07 15:58:20 -07:00

11 lines
177 B
Makefile

SRCS = $(wildcard samples/*.c)
PROGS = $(patsubst %.c,%,$(SRCS))
all: $(PROGS)
%: %.c
$(CC) $(CFLAGS) -O0 -g -no-pie -fno-omit-frame-pointer -o $@ $<
clean:
rm -f $(PROGS)