mirror of
https://github.com/ChronosX88/netsukuku.git
synced 2024-11-23 18:52:18 +00:00
14 lines
282 B
Makefile
14 lines
282 B
Makefile
|
CXX=clang
|
||
|
DEBUG=-g -pthread -Wfatal-errors -pedantic -Weffc++ -Wunreachable-code -Winline -Wredundant-decls -Wno-vla
|
||
|
SRCBIN=Netsukuku-Console
|
||
|
|
||
|
all: ${SRCBIN}
|
||
|
|
||
|
${SRCBIN}: Netsukuku-Console.o
|
||
|
${CXX} ${LDFLAGS} ${LIBS} $^ -pthread -g -o $@
|
||
|
|
||
|
.PHONY: clean
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o ${SRCBIN}
|