[llvm-commits] CVS: llvm/Makefile.rules
John Criswell
criswell at cs.uiuc.edu
Thu Oct 2 14:03:15 PDT 2003
Changes in directory llvm:
Makefile.rules updated: 1.141 -> 1.142
---
Log message:
Fixed the conditional targets for postscript files and tags.
---
Diffs of the changes:
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.141 llvm/Makefile.rules:1.142
--- llvm/Makefile.rules:1.141 Thu Sep 18 13:37:08 2003
+++ llvm/Makefile.rules Thu Oct 2 14:02:02 2003
@@ -550,7 +550,7 @@
# 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 @@
@$(DATE) > $@
# To create postscript files from dot files...
-ifdef DOT
+ifneq ($(DOT),false)
%.ps: %.dot
${DOT} -Tps < $< > $@
else
More information about the llvm-commits
mailing list