mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 20:28:29 +00:00
11 lines
312 B
Makefile
11 lines
312 B
Makefile
# Ruby binding for Unicorn engine. Sascha Schirra <sashs@scoding.de>
|
|
|
|
.PHONY: gen_const
|
|
|
|
# Use bundle install && rake to install gem and test
|
|
install: gen_const
|
|
cd unicorn_gem && rake build
|
|
cd unicorn_gem && gem install --local pkg/unicorn-engine-1.0.1.gem
|
|
|
|
gen_const:
|
|
cd .. && python const_generator.py ruby
|