mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 21:48:26 +00:00
14 lines
237 B
Makefile
14 lines
237 B
Makefile
# Go binding for Unicorn engine. Ryan Hileman <lunixbochs@gmail.com>
|
|
|
|
.PHONY: gen_const test
|
|
|
|
all:
|
|
$(MAKE) gen_const
|
|
cd unicorn && go build
|
|
$(MAKE) test
|
|
|
|
gen_const:
|
|
cd .. && python const_generator.py go
|
|
|
|
test:
|
|
cd unicorn && go test
|