X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=osgi.mk;h=3f3a56f12a0952df9307c9a7d92869e48cb61acf;hb=a9cec14ca617bf6c9e8f9530c3d9e7be54cbf5d5;hp=40946d5d660ac3a34e4b0ad3aae03f95bafed7cd;hpb=ed86c203d9fcb9113431795edf3e7712b81e2c65;p=cc0%2Fargeo-build.git diff --git a/osgi.mk b/osgi.mk index 40946d5..3f3a56f 100644 --- a/osgi.mk +++ b/osgi.mk @@ -27,9 +27,10 @@ DEP_CATEGORIES ?= JAVADOC_PACKAGES ?= A2_BASE ?=/usr/share/a2 /usr/local/share/a2 $(A2_OUTPUT) +# 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)))) # Third-party libraries LOGGER_JAR ?= $(lastword $(foreach base, $(A2_BASE), $(wildcard $(base)/log/syslogger/org.argeo.tp/org.argeo.tp.syslogger.$(SYSLOGGER_BRANCH).jar))) -ECJ_JAR ?= $(lastword $(foreach base, $(A2_BASE), $(wildcard $(base)/org.argeo.tp.build/org.eclipse.jdt.core.compiler.batch.$(ECJ_BRANCH).jar))) BNDLIB_JAR ?= $(lastword $(foreach base, $(A2_BASE), $(wildcard $(base)/org.argeo.tp.build/biz.aQute.bndlib.$(BNDLIB_BRANCH).jar))) # Internal variables @@ -51,7 +52,12 @@ osgi: $(BUILD_BASE)/built $(MANIFESTS) # Actual build (compilation + bundle packaging) $(BUILD_BASE)/built : BUNDLES_TO_BUILD = $(subst $(abspath $(BUILD_BASE))/,, $(subst to-build,, $?)) $(BUILD_BASE)/built : $(TODOS) - $(ARGEO_MAKE) \ + @echo | Compiler : $(ECJ_JAR) + @echo | A2 category : $(A2_CATEGORY) + @echo | Bundles : $(BUNDLES_TO_BUILD) + @echo | Dependencies : $(DEP_CATEGORIES) + @echo | A2 bases : $(A2_BASE) + @$(ARGEO_MAKE) \ all --a2-bases $(A2_BASE) --dep-categories $(DEP_CATEGORIES) \ --category $(A2_CATEGORY) --bundles $(BUNDLES_TO_BUILD) @touch $(BUILD_BASE)/built @@ -78,8 +84,13 @@ clean-manifests : osgi-install: $(ARGEO_MAKE) \ - install --category $(A2_CATEGORY) --bundles $(subst $(A2_CATEGORY)/,,$*) \ - --target $(DESTDIR)$(A2_INSTALL_TARGET) + install --category $(A2_CATEGORY) --bundles $(BUNDLES) \ + --target $(A2_INSTALL_TARGET) + +osgi-uninstall: + $(ARGEO_MAKE) \ + uninstall --category $(A2_CATEGORY) --bundles $(BUNDLES) \ + --target $(A2_INSTALL_TARGET) # Javadoc generation javadoc: $(BUILD_BASE)/built