From: Jason Stephenson Date: Wed, 29 Jan 2020 16:29:45 +0000 (-0500) Subject: Add *-tester Makefile.install target X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=02bb707e19c87d840d549db45ab8ebd6a2be6dde;p=working%2FEvergreen.git Add *-tester Makefile.install target --- diff --git a/Open-ILS/src/extras/Makefile.install b/Open-ILS/src/extras/Makefile.install index 3454450205..bc80897a6a 100644 --- a/Open-ILS/src/extras/Makefile.install +++ b/Open-ILS/src/extras/Makefile.install @@ -133,4 +133,15 @@ debian-stretch-packager: debian-jessie-packager: @make -f $(DIR)/Makefile.debian-jessie install_packager +ubuntu-bionic-tester: + @make -f $(DIR)/Makefile.ubuntu-bionic install_tester +ubuntu-xenial-tester: + @make -f $(DIR)/Makefile.ubuntu-xenial install_tester +debian-buster-tester: + @make -f $(DIR)/Makefile.debian-buster install_tester +debian-stretch-tester: + @make -f $(DIR)/Makefile.debian-stretch install_tester +debian-jessie-tester: + @make -f $(DIR)/Makefile.debian-jessie install_tester + # vim:noet:sw=4:ts=4: diff --git a/Open-ILS/src/extras/install/Makefile.debian-buster b/Open-ILS/src/extras/install/Makefile.debian-buster index 4723734221..b0fe5e2dc9 100644 --- a/Open-ILS/src/extras/install/Makefile.debian-buster +++ b/Open-ILS/src/extras/install/Makefile.debian-buster @@ -121,7 +121,9 @@ PGSQL_SERVER_DEBS_10 = \ DEVELOPER_DEBS = \ automake \ autoconf \ - libtool \ + libtool + +TESTER_DEBS = \ chromium \ firefox-esr @@ -168,6 +170,9 @@ install_developer: make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)" make -f $(DIR)/Makefile.common install_nodejs_from_source +install_tester: + make -f $(DIR)/Makefile.debian DEBS="$(TESTER_DEBS)" + install_translator: install_developer make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)" diff --git a/Open-ILS/src/extras/install/Makefile.debian-jessie b/Open-ILS/src/extras/install/Makefile.debian-jessie index d30fa4dd25..ffdbf349ec 100644 --- a/Open-ILS/src/extras/install/Makefile.debian-jessie +++ b/Open-ILS/src/extras/install/Makefile.debian-jessie @@ -122,7 +122,9 @@ PGSQL_SERVER_DEBS_10 = \ DEVELOPER_DEBS = \ automake \ autoconf \ - libtool \ + libtool + +TESTER_DEBS = \ chromium \ firefox-esr @@ -169,6 +171,9 @@ install_developer: make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)" make -f $(DIR)/Makefile.common install_nodejs_from_source +install_tester: + make -f $(DIR)/Makefile.debian DEBS="$(TESTER_DEBS)" + install_translator: install_developer make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)" diff --git a/Open-ILS/src/extras/install/Makefile.debian-stretch b/Open-ILS/src/extras/install/Makefile.debian-stretch index d16e1a51bf..033b057379 100644 --- a/Open-ILS/src/extras/install/Makefile.debian-stretch +++ b/Open-ILS/src/extras/install/Makefile.debian-stretch @@ -121,7 +121,9 @@ PGSQL_SERVER_DEBS_10 = \ DEVELOPER_DEBS = \ automake \ autoconf \ - libtool \ + libtool + +TESTER_DEBS = \ chromium \ firefox-esr @@ -168,6 +170,9 @@ install_developer: make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)" make -f $(DIR)/Makefile.common install_nodejs_from_source +install_tester: + make -f $(DIR)/Makefile.debian DEBS="$(TESTER_DEBS)" + install_translator: install_developer make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)" diff --git a/Open-ILS/src/extras/install/Makefile.ubuntu-bionic b/Open-ILS/src/extras/install/Makefile.ubuntu-bionic index f1478a308c..92e43e37fb 100644 --- a/Open-ILS/src/extras/install/Makefile.ubuntu-bionic +++ b/Open-ILS/src/extras/install/Makefile.ubuntu-bionic @@ -126,7 +126,9 @@ PGSQL_SERVER_DEBS_10 = \ DEVELOPER_DEBS = \ automake \ autoconf \ - libtool \ + libtool + +TESTER_DEBS = \ chromium-browser \ firefox @@ -176,6 +178,9 @@ install_developer: make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)" make -f $(DIR)/Makefile.common install_nodejs_from_source +install_tester: + make -f $(DIR)/Makefile.debian DEBS="$(TESTER_DEBS)" + install_translator: install_developer make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)" diff --git a/Open-ILS/src/extras/install/Makefile.ubuntu-xenial b/Open-ILS/src/extras/install/Makefile.ubuntu-xenial index e8251b7cfd..b5656bcc24 100644 --- a/Open-ILS/src/extras/install/Makefile.ubuntu-xenial +++ b/Open-ILS/src/extras/install/Makefile.ubuntu-xenial @@ -121,7 +121,9 @@ PGSQL_SERVER_DEBS_10 = \ DEVELOPER_DEBS = \ automake \ autoconf \ - libtool \ + libtool + +TESTER_DEBS = \ chromium-browser \ firefox @@ -168,6 +170,9 @@ install_developer: make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)" make -f $(DIR)/Makefile.common install_nodejs_from_source +install_tester: + make -f $(DIR)/Makefile.debian DEBS="$(TESTER_DEBS)" + install_translator: install_developer make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)"