mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-11 08:48:12 +00:00
086fe1ac79
- Stolen from LLVM with minor modifications llvm-svn: 54103
16 lines
197 B
Makefile
16 lines
197 B
Makefile
LEVEL = ../..
|
|
DIRS := lib Driver docs
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
test::
|
|
@ $(MAKE) -C test
|
|
|
|
report::
|
|
@ $(MAKE) -C test report
|
|
|
|
clean::
|
|
@ $(MAKE) -C test clean
|
|
|
|
.PHONY: test report clean
|