X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=osgi.mk;fp=osgi.mk;h=334714bf6ad9f6d37ac2c39edfda1ede82e5389e;hb=5d6d48735e6db0917e5b520e660ab251deb9d442;hp=ca17cbe820b8fb7b7f7150da2f3d7f4085cab2e3;hpb=cabcc3462226b71849ca42301c21e05b63f150c2;p=cc0%2Fargeo-build.git diff --git a/osgi.mk b/osgi.mk index ca17cbe..334714b 100644 --- a/osgi.mk +++ b/osgi.mk @@ -1,37 +1,27 @@ ARGEO_BUILD_BASE := $(dir $(lastword $(MAKEFILE_LIST))) include $(ARGEO_BUILD_BASE)common.mk -# -# Common build routines to be included in Makefiles -# -# The following variables are found in the sdk.mk file which is generated by the configure script: -# SDK_SRC_BASE the base of the source code, typically the root of the cloned git repository -# SDK_BUILD_BASE the base of the output -# JAVA_HOME the base of the JDK used to build -A2_OUTPUT = $(SDK_BUILD_BASE)/a2 -JVM ?= $(JAVA_HOME)/bin/java -JAVADOC ?= $(JAVA_HOME)/bin/javadoc # The following variables should be declared in the including Makefile: -# BUNDLES the space-separated list of bundles to build -# A2_CATEGORY the (single) a2 category the bundles will belong to +# BUNDLES the space-separated list of bundles to build +# A2_CATEGORY the (single) a2 category the bundles will belong to # The following environment variables can change the behaviour of the build -# SOURCE_BUNDLES sources will be packaged separately in Eclipse-compatible source bundles -# NO_MANIFEST_COPY generated MANIFESTs won't be copied to the source tree +# SOURCE_BUNDLES sources will be packaged separately in Eclipse-compatible source bundles +# NO_MANIFEST_COPY generated MANIFESTs won't be copied to the source tree # The following variables have default values which can be overriden -# DEP_CATEGORIES the a2 categories the compilation depends on -# JAVADOC_PACKAGES the space-separated list of packages for which javadoc will be generated -# A2_BASE the space-separated directories where already built a2 categories can be found +# DEP_CATEGORIES the a2 categories the compilation depends on +# JAVADOC_PACKAGES the space-separated list of packages for which javadoc will be generated +# NATIVE_PACKAGES the space-separated list of JNI packages (directories) DEP_CATEGORIES ?= JAVADOC_PACKAGES ?= -A2_BASE ?=/usr/share/a2 /usr/local/share/a2 $(A2_OUTPUT) +NATIVE_PACKAGES ?= # We always use the latest version of the ECJ compiler -ECJ_JAR ?= $(lastword $(foreach base, $(A2_BASE), $(sort $(wildcard $(base)/org.argeo.tp.build/org.eclipse.jdt.core.compiler.batch.$(ECJ_MAJOR).*.jar)))) +ECJ_JAR ?= $(firstword $(foreach base, $(A2_BASE), $(sort $(wildcard $(base)/org.argeo.tp.build/org.eclipse.jdt.core.compiler.batch.$(ECJ_MAJOR).*.jar)))) # Third-party libraries -LOGGER_JAR ?= $(lastword $(foreach base, $(A2_BASE), $(wildcard $(base)/log/syslogger/org.argeo.tp/org.argeo.tp.syslogger.$(SYSLOGGER_BRANCH).jar))) -BNDLIB_JAR ?= $(lastword $(foreach base, $(A2_BASE), $(wildcard $(base)/org.argeo.tp.build/biz.aQute.bndlib.$(BNDLIB_BRANCH).jar))) +LOGGER_JAR ?= $(firstword $(foreach base, $(A2_BASE), $(wildcard $(base)/log/syslogger/org.argeo.tp/org.argeo.tp.syslogger.$(SYSLOGGER_BRANCH).jar))) +BNDLIB_JAR ?= $(firstword $(foreach base, $(A2_BASE), $(wildcard $(base)/org.argeo.tp.build/biz.aQute.bndlib.$(BNDLIB_BRANCH).jar))) # Internal variables ARGEO_MAKE = $(JVM) -cp $(LOGGER_JAR):$(ECJ_JAR):$(BNDLIB_JAR) $(ARGEO_BUILD_BASE)src/org/argeo/build/Make.java @@ -42,10 +32,11 @@ endif BUILD_BASE = $(SDK_BUILD_BASE)/$(shell basename $(SDK_SRC_BASE)) TARGET_BUNDLES = $(abspath $(foreach bundle, $(BUNDLES),$(A2_OUTPUT)/$(shell dirname $(bundle))/$(A2_CATEGORY)/$(shell basename $(bundle)).$(major).$(minor).jar)) TODOS = $(foreach bundle, $(BUNDLES),$(BUILD_BASE)/$(bundle)/to-build) +# Native +JNIDIRS=$(foreach package, $(NATIVE_PACKAGES), jni/$(package)) # Needed in order to be able to expand $$ variables .SECONDEXPANSION: -.PHONY: osgi manifests javadoc osgi: $(BUILD_BASE)/built $(MANIFESTS) @@ -81,22 +72,37 @@ endif clean-manifests : @rm -rf $(foreach bundle, $(BUNDLES), $(bundle)/META-INF/MANIFEST.MF); -osgi-install: +osgi-all: osgi jni-all + +osgi-clean: jni-clean + rm -rf $(BUILD_BASE) + +osgi-install: jni-install $(ARGEO_MAKE) \ install --category $(A2_CATEGORY) --bundles $(BUNDLES) \ - --target $(A2_INSTALL_TARGET) + --target $(A2_INSTALL_TARGET) \ + --os $(TARGET_OS) --target-native $(A2_NATIVE_INSTALL_TARGET) -osgi-uninstall: +osgi-uninstall: jni-uninstall $(ARGEO_MAKE) \ uninstall --category $(A2_CATEGORY) --bundles $(BUNDLES) \ - --target $(A2_INSTALL_TARGET) + --target $(A2_INSTALL_TARGET) \ + --os $(TARGET_OS) --target-native $(A2_NATIVE_INSTALL_TARGET) + +jni-all: + $(foreach dir, $(JNIDIRS), $(MAKE) -C $(dir) all;) + +jni-clean: + $(foreach dir, $(JNIDIRS), $(MAKE) -C $(dir) clean;) + +jni-install: + $(foreach dir, $(JNIDIRS), $(MAKE) -C $(dir) install;) + +jni-uninstall: + $(foreach dir, $(JNIDIRS), $(MAKE) -C $(dir) uninstall;) # Javadoc generation javadoc: $(BUILD_BASE)/built $(JAVADOC) -noindex -quiet -Xmaxwarns 1 -d $(BUILD_BASE)/api --source-path $(subst $(space),$(pathsep),$(strip $(JAVADOC_SRCS))) -subpackages $(JAVADOC_PACKAGES) -# Make variables used to replace spaces by a separator, typically in order to generate classpaths -# for example: CLASSPATH = $(subst $(space),$(pathsep),$(strip $(JARS))) -null := -space := $(null) # -pathsep := : \ No newline at end of file +.PHONY: osgi manifests javadoc osgi-all osgi-clean osgi-install osgi-uninstall jni-all jni-clean jni-install jni-uninstall