mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
92101acd7f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@361 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
203 B
Makefile
12 lines
203 B
Makefile
LEVEL = ../..
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
all:: lli
|
|
clean::
|
|
rm -f lli
|
|
|
|
lli : $(ObjectsG)
|
|
$(LinkG) -o $@ $(ObjectsG) \
|
|
-lopt -lbcreader -lbcwriter \
|
|
-lvmcore -lasmwriter -lanalysis -lsupport
|