aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-03-22 19:13:47 +0000
committerChris Lattner <sabre@nondot.org>2002-03-22 19:13:47 +0000
commit812d8be09c5067a13d08b3dbd5f5748ec1802309 (patch)
tree7ce1abdb043efb80d1c2469721c285c8b1d43db3 /runtime/Makefile
parentbbe7bbe4d97230f9e2a3da1fc8297b5a53bcdd29 (diff)
downloadexternal_llvm-812d8be09c5067a13d08b3dbd5f5748ec1802309.zip
external_llvm-812d8be09c5067a13d08b3dbd5f5748ec1802309.tar.gz
external_llvm-812d8be09c5067a13d08b3dbd5f5748ec1802309.tar.bz2
Remove compilation of __main because we now link -lgcc into programs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1947 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/Makefile')
-rw-r--r--runtime/Makefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/Makefile b/runtime/Makefile
index 48ea8ea..2fad228 100644
--- a/runtime/Makefile
+++ b/runtime/Makefile
@@ -1,7 +1,5 @@
# Libraries Makefile: Build all subdirectories automatically
-all:: runtime.o
-
LEVEL = ../..
DIRS := $(sort $(filter-out Output/, $(filter-out CVS/, $(wildcard */))))
@@ -13,6 +11,3 @@ include ${LEVEL}/Makefile.common
install::
clean::
-
-runtime.o: ../runtime.c
- $(CC) -c $(CFLAGS) $<