2018-10-19 13:36:54 +02:00
|
|
|
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)
|
|
|
|
|
2018-10-25 12:17:28 +02:00
|
|
|
fn: $(SRC)
|
|
|
|
$(CC) -o $@ $^ $(CFLAGS)
|
|
|
|
|
2018-10-19 13:36:54 +02:00
|
|
|
clean:
|
|
|
|
rm -f fn
|
|
|
|
|