3 lines
80 B
Makefile
3 lines
80 B
Makefile
CFLAGS := -std=gnu99 -Wall -O3
|
|
SRCFILES := $(wildcard *.c)
|
|
all: $(SRCFILES:.c=)
|