mirror of
https://github.com/yuzu-mirror/unicorn.git
synced 2026-03-26 15:04:48 +01:00
11 lines
198 B
Makefile
11 lines
198 B
Makefile
# Go binding for Unicorn engine. Ryan Hileman <lunixbochs@gmail.com>
|
|
|
|
.PHONY: gen_const test
|
|
|
|
gen_const:
|
|
cd .. && python const_generator.py go
|
|
cd unicorn && go build
|
|
|
|
test:
|
|
cd unicorn && go test
|