From: Wolfgang (Blub) Bumiller Date: Wed, 22 Aug 2012 10:38:16 +0000 (+0200) Subject: make track=no adds -DNOTRACK WARNING: do not compile only parts of the code with... X-Git-Tag: 0.1-rc1~108 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=5275bdb35e74c46d3b3d23dd23a6aa2ec25d99ea;p=xonotic%2Fgmqcc.git make track=no adds -DNOTRACK WARNING: do not compile only parts of the code with that... it would cause major breakage --- diff --git a/Makefile b/Makefile index cafa0c8..c30f5dc 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,10 @@ ifeq ($(CC), clang) -Wno-format-nonliteral endif +ifeq ($(track), no) + CFLAGS += -DNOTRACK +endif + OBJ = \ util.o \ code.o \