mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 06:46:41 +00:00
11 lines
169 B
Makefile
11 lines
169 B
Makefile
LEVEL = ../..
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
all:: dis
|
|
clean ::
|
|
rm -f dis
|
|
|
|
dis : $(ObjectsG)
|
|
$(LinkG) -o $@ $(ObjectsG) -lbcreader -lasmwriter -lanalysis -lvmcore
|
|
|