From 6d112bb632a673800d9d822ba8e188cd0274406f Mon Sep 17 00:00:00 2001 From: theraven Date: Fri, 22 Apr 2011 11:45:44 +0000 Subject: [PATCH] Don't accidentally default to compiling without legacy compat. --- GNUmakefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 77680b5..8a2da69 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -44,7 +44,7 @@ libobjc_C_FILES = \ libobjcxx_CC_FILES = objcxx_eh.cc libobjcxx_LDFLAGS = -L./obj/$(GNUSTEP_TARGET_LDIR)/ -lstdc++ -lobjc -ifneq ($(enable_legacy), yes) +ifeq ($(enable_legacy), no) libobjc_C_FILES += legacy_malloc.c libobjc_CPPFLAGS += -DNO_LEGACY endif @@ -120,10 +120,13 @@ include $(GNUSTEP_MAKEFILES)/aggregate.make include $(GNUSTEP_MAKEFILES)/library.make all:: - sh build_opts.sh $(MAKE) all + @echo Building LLVM optimisation passes... + @sh build_opts.sh $(MAKE) all install:: - sh build_opts.sh $(MAKE) install + @echo Installing LLVM optimisation passes... + @sh build_opts.sh $(MAKE) install clean:: - sh build_opts.sh $(MAKE) clean + @echo Cleaning LLVM optimisation passes... + @sh build_opts.sh $(MAKE) clean