From: John Criswell Date: Thu, 2 Oct 2003 19:02:02 +0000 (+0000) Subject: Fixed the conditional targets for postscript files and tags. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e0f9ac6d45d2e6d66e5cc9dd1e56e4bbefb24efe;p=oota-llvm.git Fixed the conditional targets for postscript files and tags. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8823 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index 0787891f7a4..9152f8edc60 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -550,7 +550,7 @@ endif # Create a TAGS database for emacs #------------------------------------------------------------------------ -ifdef ETAGS +ifneq ($(ETAGS),false) ifeq ($(LEVEL), .) SRCDIRS := $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) @@ -729,7 +729,7 @@ YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output) @$(DATE) > $@ # To create postscript files from dot files... -ifdef DOT +ifneq ($(DOT),false) %.ps: %.dot ${DOT} -Tps < $< > $@ else