unicorn/bindings/go/Makefile

15 lines
237 B
Makefile
Raw Normal View History

2015-08-28 06:13:50 +02:00
# Go binding for Unicorn engine. Ryan Hileman <lunixbochs@gmail.com>
.PHONY: gen_const test
all:
$(MAKE) gen_const
cd unicorn && go build
$(MAKE) test
2015-08-28 06:13:50 +02:00
gen_const:
cd .. && python const_generator.py go
test:
cd unicorn && go test