summaryrefslogtreecommitdiff
path: root/runtime/Makefile
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2002-03-18 04:04:25 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2002-03-18 04:04:25 +0000
commit1d7aefd6c7181f7842fe8382e324a2e9466d55d1 (patch)
treefdf4c66024aa72e2a6aa62d47a347c40fda2042a /runtime/Makefile
parentd79b4eb506130ff8b09f751e85417d99807a9c47 (diff)
downloadllvm-1d7aefd6c7181f7842fe8382e324a2e9466d55d1.tar.gz
llvm-1d7aefd6c7181f7842fe8382e324a2e9466d55d1.tar.bz2
llvm-1d7aefd6c7181f7842fe8382e324a2e9466d55d1.tar.xz
Need rule for runtime.o. This is just temporary to provide
ll__main so that llc output can link. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1913 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/Makefile')
-rw-r--r--runtime/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/Makefile b/runtime/Makefile
index 2fad2286f8..48ea8ea93c 100644
--- a/runtime/Makefile
+++ b/runtime/Makefile
@@ -1,5 +1,7 @@
# Libraries Makefile: Build all subdirectories automatically
+all:: runtime.o
+
LEVEL = ../..
DIRS := $(sort $(filter-out Output/, $(filter-out CVS/, $(wildcard */))))
@@ -11,3 +13,6 @@ include ${LEVEL}/Makefile.common
install::
clean::
+
+runtime.o: ../runtime.c
+ $(CC) -c $(CFLAGS) $<