summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-04 22:34:33 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-04 22:34:33 +0000
commit98880b9d0a28e66067168804c0b47103859cc470 (patch)
tree1c60aaf2229a187919656b83528ba27f45707889 /runtime
parent3d2162f95084ca5c9033b733a1663f7e59aaa2e0 (diff)
downloadllvm-98880b9d0a28e66067168804c0b47103859cc470.tar.gz
llvm-98880b9d0a28e66067168804c0b47103859cc470.tar.bz2
llvm-98880b9d0a28e66067168804c0b47103859cc470.tar.xz
Use the FAKE_SOURCES feature for proper distribution of contents
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18506 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/GCCLibraries/crtend/Makefile21
1 files changed, 12 insertions, 9 deletions
diff --git a/runtime/GCCLibraries/crtend/Makefile b/runtime/GCCLibraries/crtend/Makefile
index 4c71d50a9e..a65ddc41a2 100644
--- a/runtime/GCCLibraries/crtend/Makefile
+++ b/runtime/GCCLibraries/crtend/Makefile
@@ -20,21 +20,24 @@ DONT_BUILD_RELINKED = 1
BYTECODE_LIBRARY = 1
LIBRARYNAME = crtend
-# Note: We're fooling Makefile.rules here. The sources listed don't exist but
-# it doesn't matter. Makefile.rules just uses $(SOURCES) to generate the set of
-# object files to put in the library. Since we've specified BYTECODE_LIBRARY
-# above, it changes the .c suffix to .bc suffix. Below are rules to build
-# each of those bytecode objects from the sources we do have in this directory.
-SOURCES = comp_main.c comp_genericeh.c comp_sjljeh.c
+# Note: We're using FAKE_SOURCES because the comp_*.c don't really exists.
+# However this makefile builds comp_*.bc and that's what we want in the library.
+# The FAKE_SOURCES variable supports this kind of construction. It uses the
+# FAKE_SOURCES to determine a list of things to build, but doesn't use
+# FAKE_SOURCES for dependencies, distribution, etc. It is assumed the makefile
+# will know how to build the objects eventhough the sources don't exist.
-EXTRA_DIST := comp_main.lst comp_genericeh.lst comp_sjljeh.lst
-
-include $(LEVEL)/Makefile.common
+FAKE_SOURCES := comp_main.c comp_genericeh.c comp_sjljeh.c
MainSrc := crtend.c listend.ll
GenericEHSrc := Exception.cpp
SJLJEHSrc := SJLJ-Exception.cpp
+EXTRA_DIST := $(MainSrc) $(GenericEHSrc) $(SJLJEHSrc) \
+ comp_main.lst comp_genericeh.lst comp_sjljeh.lst
+
+include $(LEVEL)/Makefile.common
+
MainObj := $(ObjDir)/crtend.bc $(ObjDir)/listend.bc
GenericEHObj := $(ObjDir)/Exception.bc
SJLJEHObj := $(ObjDir)/SJLJ-Exception.bc