2015-09-25 05:45:59 +00:00
|
|
|
.PHONY: gen_const clean jar all lib samples install
|
2015-08-29 03:54:05 +00:00
|
|
|
|
2015-09-25 05:45:59 +00:00
|
|
|
all: gen_const
|
2015-09-25 07:20:02 +00:00
|
|
|
$(MAKE) -f Makefile.build all
|
2015-08-29 03:54:05 +00:00
|
|
|
|
2015-09-25 05:45:59 +00:00
|
|
|
lib:
|
2015-09-25 07:20:02 +00:00
|
|
|
$(MAKE) -f Makefile.build lib
|
2015-08-25 10:21:47 +00:00
|
|
|
|
2015-09-25 07:20:02 +00:00
|
|
|
samples:
|
|
|
|
$(MAKE) -f Makefile.build samples
|
2015-08-25 10:21:47 +00:00
|
|
|
|
2015-09-25 05:45:59 +00:00
|
|
|
jar:
|
2015-09-25 07:20:02 +00:00
|
|
|
$(MAKE) -f Makefile.build jar
|
2015-08-25 10:21:47 +00:00
|
|
|
|
|
|
|
install: lib jar
|
2015-09-25 07:20:02 +00:00
|
|
|
$(MAKE) -f Makefile.build install
|
2015-08-29 03:54:05 +00:00
|
|
|
|
|
|
|
gen_const:
|
2015-09-25 07:20:02 +00:00
|
|
|
cd .. && python const_generator.py java
|
2015-08-29 03:54:05 +00:00
|
|
|
|
|
|
|
clean:
|
2015-09-25 07:20:02 +00:00
|
|
|
rm -f unicorn/*.class
|
|
|
|
rm -f samples/*.class
|
|
|
|
rm -f *.so
|
|
|
|
rm -f *.dylib
|
|
|
|
rm -f *.dll
|