1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/runtime/Makefile
Vikram S. Adve 428665864f Need rule for runtime.o. This is just temporary to provide
ll__main so that llc output can link.

llvm-svn: 1913
2002-03-18 04:04:25 +00:00

19 lines
362 B
Makefile

# Libraries Makefile: Build all subdirectories automatically
all:: runtime.o
LEVEL = ../..
DIRS := $(sort $(filter-out Output/, $(filter-out CVS/, $(wildcard */))))
include ${LEVEL}/Makefile.common
# Install target for libraries: Copy into the gcc install directory in chris's
# tree...
#
install::
clean::
runtime.o: ../runtime.c
$(CC) -c $(CFLAGS) $<