32aaca146b
since that better describes what I'm doing in there, plus removed the silly java prog because it was silly and not GNU C.
7 lines
129 B
Makefile
7 lines
129 B
Makefile
TARGETS := $(patsubst %.c,%,$(wildcard *.c))
|
|
CFLAGS += -g -Wall -Wextra -pedantic -pedantic-errors
|
|
|
|
all: $(TARGETS)
|
|
|
|
.PHONY: all
|