Remove compilation of __main because we now link -lgcc into programs
authorChris Lattner <sabre@nondot.org>
Fri, 22 Mar 2002 19:13:47 +0000 (19:13 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 22 Mar 2002 19:13:47 +0000 (19:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1947 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/Makefile

index 48ea8ea93cb5b515cb4feed1de2f70bfad87532b..2fad2286f87684a33440bd80055f1837e984b119 100644 (file)
@@ -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) $<