From 428665864f692ae3ab4f46732147ba574f53bff7 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Mon, 18 Mar 2002 04:04:25 +0000 Subject: [PATCH] Need rule for runtime.o. This is just temporary to provide ll__main so that llc output can link. llvm-svn: 1913 --- runtime/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runtime/Makefile b/runtime/Makefile index 2fad2286f87..48ea8ea93cb 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) $<