unicorn/bindings/java/Makefile

30 lines
469 B
Makefile
Raw Normal View History

.PHONY: gen_const clean jar all lib samples install
all: gen_const
2015-09-25 10:20:02 +03:00
$(MAKE) -f Makefile.build all
lib:
2015-09-25 10:20:02 +03:00
$(MAKE) -f Makefile.build lib
2015-09-25 10:20:02 +03:00
samples:
$(MAKE) -f Makefile.build samples
jar:
2015-09-25 10:20:02 +03:00
$(MAKE) -f Makefile.build jar
install: lib jar
2015-09-25 10:20:02 +03:00
$(MAKE) -f Makefile.build install
uninstall:
2018-03-12 08:41:38 +03:00
$(MAKE) -f Makefile.build uninstall
gen_const:
2021-10-26 14:10:59 +03:00
cd .. && python3 const_generator.py java
clean:
2015-09-25 10:20:02 +03:00
rm -f unicorn/*.class
rm -f samples/*.class
rm -f *.so
rm -f *.dylib
rm -f *.dll