mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 14:38:15 +00:00
c3c6e250e4
* Fixes the logic for Dylib extensions on macOS. * Adds an uninstall task and documentation. Backports commit 94b116877670ed9bbe38b71e3b9ad28f10cb3775 from unicorn
29 lines
468 B
Makefile
29 lines
468 B
Makefile
.PHONY: gen_const clean jar all lib samples install
|
|
|
|
all: gen_const
|
|
$(MAKE) -f Makefile.build all
|
|
|
|
lib:
|
|
$(MAKE) -f Makefile.build lib
|
|
|
|
samples:
|
|
$(MAKE) -f Makefile.build samples
|
|
|
|
jar:
|
|
$(MAKE) -f Makefile.build jar
|
|
|
|
install: lib jar
|
|
$(MAKE) -f Makefile.build install
|
|
|
|
uninstall:
|
|
$(MAKE) -f Makefile.build uninstall
|
|
|
|
gen_const:
|
|
cd .. && python const_generator.py java
|
|
|
|
clean:
|
|
rm -f unicorn/*.class
|
|
rm -f samples/*.class
|
|
rm -f *.so
|
|
rm -f *.dylib
|
|
rm -f *.dll
|