From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 1/3] Add make install recipe for alice only Date: Tue, 24 Jul 2018 11:09:49 +0200 Message-ID: <20180724090951.11769-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4645056426640981439==" List-Id: --===============4645056426640981439== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable It saves us much time when we install the network only on alice, when we are using alice only. Signed-off-by: Jonatan Schlag --- Makefile.am | 9 ++++++--- test/nitsi/include/alice_make-install.in | 4 ++++ 2 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 test/nitsi/include/alice_make-install.in diff --git a/Makefile.am b/Makefile.am index e56d0fb..bde49ff 100644 --- a/Makefile.am +++ b/Makefile.am @@ -586,13 +586,16 @@ VIRTUAL_ENVIRONMENT_IMAGES_DOWNLOAD_URL =3D \ https://people.ipfire.org/~jschlag/nitsi-ipfire/virtual-environment/basic/ =20 NITSI_INCLUDE_RECIPES =3D \ - test/nitsi/include/make-install + test/nitsi/include/make-install \ + test/nitsi/include/alice_make-install =20 EXTRA_DIST +=3D \ - test/nitsi/include/make-install.in + test/nitsi/include/make-install.in \ + test/nitsi/include/alice_make-install.in =20 CLEANFILES +=3D \ - test/nitsi/include/make-install + test/nitsi/include/make-install \ + test/nitsi/include/alice_make-install =20 NITSI_TESTS =3D \ test/nitsi/test/hello-world \ diff --git a/test/nitsi/include/alice_make-install.in b/test/nitsi/include/al= ice_make-install.in new file mode 100644 index 0000000..6718510 --- /dev/null +++ b/test/nitsi/include/alice_make-install.in @@ -0,0 +1,4 @@ +alice: tar xvfa @PACKAGE_NAME(a)-@PACKAGE_VERSION(a).tar.gz && cd @PACKAGE_N= AME(a)-@PACKAGE_VERSION@ +alice: ./configure --prefix=3D/usr && make -j2 +alice: make +alice: make install --=20 2.11.0 --===============4645056426640981439==--