mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-05 02:28:51 +00:00
11 lines
189 B
Makefile
11 lines
189 B
Makefile
|
LEVEL = ../..
|
||
|
include $(LEVEL)/Makefile.common
|
||
|
|
||
|
all:: dis
|
||
|
clean ::
|
||
|
rm -f dis
|
||
|
|
||
|
dis : $(ObjectsG)
|
||
|
$(LinkG) -o $@ $(ObjectsG) -lvmcore -lasmwriter -lanalysis \
|
||
|
-lbcreader
|