mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 14:45:48 +00: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
|