mirror of
https://github.com/ChronosX88/netsukuku.git
synced 2024-11-23 10:42:20 +00:00
15 lines
283 B
Makefile
15 lines
283 B
Makefile
C=clang
|
|
DEBUG=-g -fno-builtin -Wfatal-errors -pedantic -Wunreachable-code -Winline -Wredundant-decls -Wno-vla
|
|
CFLAGS=-Wall ${DEBUG}
|
|
SRCBIN=Netsukuku-Console
|
|
|
|
all: ${SRCBIN}
|
|
|
|
${SRCBIN}: Netsukuku-Console.o
|
|
${C} ${LDFLAGS} ${LIBS} $^ -o $@
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
rm -f *.o ${SRCBIN}
|