blob: b3f3db2134c81fd980bc7d98c15f711ed5af57e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
include ../root.mk
export PROJECT=tinySAK
all:
(cd ../../$(PROJECT)/src ; $(MAKE) -f droid-makefile all; $(MAKE) -f droid-makefile install; cp lib$(PROJECT).so $(OUTPUT_DIR))
(cd ../../$(PROJECT)/test; $(MAKE) -f droid-makefile all; $(MAKE) -f droid-makefile install; cp test $(OUTPUT_DIR))
clean:
(cd ../../$(PROJECT)/src; $(MAKE) -f droid-makefile clean)
(cd ../../$(PROJECT)/test; $(MAKE) -f droid-makefile clean)
|