From e6acb05262cf73d996a3b567166d0c145bef6083 Mon Sep 17 00:00:00 2001 From: Mathieu Baudier Date: Mon, 29 May 2023 13:29:02 +0200 Subject: [PATCH] Add install/uninstall make targets --- Makefile | 9 +++++++++ rebuild/Makefile | 6 ++++++ rebuild/org.argeo.tp.utils/Makefile | 4 ++++ 3 files changed, 19 insertions(+) diff --git a/Makefile b/Makefile index 1136d20..faff1a3 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,15 @@ include sdk.mk all: distribution +install: + make -C repackage install + make -C rebuild install + +uninstall: + make -C repackage uninstall + make -C rebuild uninstall + + A2_OUTPUT = $(SDK_BUILD_BASE)/a2 distribution: diff --git a/rebuild/Makefile b/rebuild/Makefile index bdeb875..792dfda 100644 --- a/rebuild/Makefile +++ b/rebuild/Makefile @@ -2,6 +2,12 @@ all: make -C org.argeo.tp.utils all + +install: + make -C org.argeo.tp.utils install + +uninstall: + make -C org.argeo.tp.utils uninstall clean: make -C org.argeo.tp.utils clean diff --git a/rebuild/org.argeo.tp.utils/Makefile b/rebuild/org.argeo.tp.utils/Makefile index 72d581c..95dcab8 100644 --- a/rebuild/org.argeo.tp.utils/Makefile +++ b/rebuild/org.argeo.tp.utils/Makefile @@ -8,6 +8,10 @@ MBOX_TARGET_EXEC=libmbox.so all: retrieve-ee4j-mbox osgi jni-ee4j-mbox +install: osgi-install + +uninstall: osgi-uninstall + retrieve-ee4j-mbox: SRC_DIR=src/ee4j-mail retrieve-ee4j-mbox: rm -rf $(SRC_DIR) -- 2.30.2