forked from OSchip/llvm-project
Need rule for runtime.o. This is just temporary to provide
ll__main so that llc output can link. llvm-svn: 1913
This commit is contained in:
parent
bd10b8e1d7
commit
5b7700028d
|
@ -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) $<
|
||||
|
|
Loading…
Reference in New Issue