mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-03-04 16:41:43 +00:00
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
|