mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
1d7aefd6c7
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
19 lines
362 B
Makefile
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) $<
|