2015-09-24 22:45:59 -07:00
|
|
|
.PHONY: gen_const clean jar all lib samples install
|
2015-08-28 20:54:05 -07:00
|
|
|
|
2015-09-24 22:45:59 -07:00
|
|
|
all: gen_const
|
2015-09-25 00:20:02 -07:00
|
|
|
$(MAKE) -f Makefile.build all
|
2015-08-28 20:54:05 -07:00
|
|
|
|
2015-09-24 22:45:59 -07:00
|
|
|
lib:
|
2015-09-25 00:20:02 -07:00
|
|
|
$(MAKE) -f Makefile.build lib
|
2015-08-25 03:21:47 -07:00
|
|
|
|
2015-09-25 00:20:02 -07:00
|
|
|
samples:
|
|
|
|
$(MAKE) -f Makefile.build samples
|
2015-08-25 03:21:47 -07:00
|
|
|
|
2015-09-24 22:45:59 -07:00
|
|
|
jar:
|
2015-09-25 00:20:02 -07:00
|
|
|
$(MAKE) -f Makefile.build jar
|
2015-08-25 03:21:47 -07:00
|
|
|
|
|
|
|
install: lib jar
|
2015-09-25 00:20:02 -07:00
|
|
|
$(MAKE) -f Makefile.build install
|
2015-08-28 20:54:05 -07:00
|
|
|
|
2018-03-12 09:40:40 -04:00
|
|
|
uninstall:
|
2018-03-12 13:41:38 +08:00
|
|
|
$(MAKE) -f Makefile.build uninstall
|
2018-03-12 09:40:40 -04:00
|
|
|
|
2015-08-28 20:54:05 -07:00
|
|
|
gen_const:
|
2021-10-26 11:22:21 +02:00
|
|
|
cd .. && python const_generator.py java
|
2015-08-28 20:54:05 -07:00
|
|
|
|
|
|
|
clean:
|
2015-09-25 00:20:02 -07:00
|
|
|
rm -f unicorn/*.class
|
|
|
|
rm -f samples/*.class
|
|
|
|
rm -f *.so
|
|
|
|
rm -f *.dylib
|
|
|
|
rm -f *.dll
|