llvm-6502/runtime/Makefile
Vikram S. Adve 1d7aefd6c7 Need rule for runtime.o. This is just temporary to provide
ll__main so that llc output can link.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1913 91177308-0d34-0410-b5e6-96231b3b80d8
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) $<