20 lines
361 B
Makefile
20 lines
361 B
Makefile
|
CFLAGS = -Wall \
|
||
|
-Wextra \
|
||
|
-Wbad-function-cast \
|
||
|
-Wcast-align \
|
||
|
-Wcast-qual \
|
||
|
-Wmissing-declarations \
|
||
|
-Wnested-externs \
|
||
|
-Wpointer-arith \
|
||
|
-Wwrite-strings \
|
||
|
-Wno-discarded-qualifiers \
|
||
|
-pedantic \
|
||
|
-std=c99
|
||
|
SRC=$(wildcard *.c)
|
||
|
|
||
|
clean:
|
||
|
rm -f fn
|
||
|
|
||
|
fn: $(SRC)
|
||
|
$(CC) -o $@ $^ $(CFLAGS)
|