Move JNI to a standalone subdirectory.
[lgpl/argeo-commons.git] / jni / Makefile
diff --git a/jni/Makefile b/jni/Makefile
new file mode 100644 (file)
index 0000000..8944d5c
--- /dev/null
@@ -0,0 +1,10 @@
+JNIDIRS = org_argeo_api_uuid_libuuid
+
+.PHONY: clean all
+
+all: 
+       $(foreach dir, $(JNIDIRS), $(MAKE) -C $(dir);)
+       
+clean:
+       $(foreach dir, $(JNIDIRS), $(MAKE) -C $(dir) clean;)
+