mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-11 07:18:44 +00:00
10 lines
177 B
Makefile
10 lines
177 B
Makefile
LEVEL = ../..
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
all:: as
|
|
clean::
|
|
rm -f as
|
|
|
|
as : $(ObjectsG)
|
|
$(LinkG) -o as $(ObjectsG) -lasmparser -lbcwriter -lasmwriter -lanalysis -lvmcore
|