[llvm-commits] CVS: llvm/Makefile.common
Chris Lattner
lattner at apoc.cs.uiuc.edu
Thu Sep 19 14:43:01 PDT 2002
Changes in directory llvm:
Makefile.common updated: 1.54 -> 1.55
---
Log message:
Move the burg option out of Makefile.config into Makefile.common since
it no longer needs to be configured.
---
Diffs of the changes:
Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.54 llvm/Makefile.common:1.55
--- llvm/Makefile.common:1.54 Wed Sep 18 06:55:13 2002
+++ llvm/Makefile.common Thu Sep 19 14:42:24 2002
@@ -121,8 +121,12 @@
# Compilation options...
#---------------------------------------------------------
-# Special tools used while building
-RunBurg := $(BURG) $(BURG_OPTS)
+# Special tools used while building the LLVM tree. Burg is built as part of the
+# utils directory.
+#
+BURG := $(LEVEL)/utils/Burg/burg
+RunBurg := $(BURG) $(BURG_OPTS)
+
# Enable this for profiling support with 'gprof'
ifdef ENABLE_PROFILING
@@ -181,8 +185,8 @@
Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
-ObjectsO = $(addprefix $(BUILD_ROOT)/Release/,$(Objs)))
-ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
+ObjectsO := $(addprefix $(BUILD_ROOT)/Release/,$(Objs)))
+ObjectsG := $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
#---------------------------------------------------------
More information about the llvm-commits
mailing list