mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-30 04:35:00 +00:00
24 lines
350 B
Makefile
24 lines
350 B
Makefile
|
LEVEL = ../..
|
||
|
|
||
|
DIRS =
|
||
|
|
||
|
LIBRARYNAME = llc
|
||
|
|
||
|
## List source files in link order
|
||
|
Source = \
|
||
|
llc.o \
|
||
|
LLCOptions.o
|
||
|
|
||
|
include $(LEVEL)/Makefile.common
|
||
|
|
||
|
all:: llc
|
||
|
|
||
|
clean::
|
||
|
rm -f llc
|
||
|
|
||
|
llc : $(ObjectsG) $(LibsG)
|
||
|
$(LinkG) -o $@ -static \
|
||
|
-lllc -lselect -lsparc -ltarget \
|
||
|
-lopt -lbcreader -lbcwriter \
|
||
|
-lvmcore -lasmwriter -lanalysis -lsupport
|