box-o-sand/oldstuff/gnu-c/Makefile
2015-06-22 13:15:42 -05:00

7 lines
129 B
Makefile

TARGETS := $(patsubst %.c,%,$(wildcard *.c))
CFLAGS += -g -Wall -Wextra -pedantic -pedantic-errors
all: $(TARGETS)
.PHONY: all