From 5275bdb35e74c46d3b3d23dd23a6aa2ec25d99ea Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Wed, 22 Aug 2012 12:38:16 +0200 Subject: [PATCH] make track=no adds -DNOTRACK WARNING: do not compile only parts of the code with that... it would cause major breakage --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) 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 \ -- 2.39.2