box-o-sand/gnu-c/Makefile
Dan Buch 32aaca146b Renaming digressions to gnu-c
since that better describes what I'm doing in there, plus removed the
silly java prog because it was silly and not GNU C.
2012-05-29 15:56:49 -04:00

7 lines
129 B
Makefile

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