box-o-sand/oldstuff/gnu-c/Makefile

7 lines
129 B
Makefile
Raw Normal View History

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