From 8e07cc7499db455c328bf4c6a4584d30bcf30c71 Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Mon, 18 Dec 2023 23:05:59 +0100 Subject: [PATCH] Makefile: no more automated guix shell Users/contributors have to run guix shell -m manifest in order to build the project --- Makefile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Makefile b/Makefile index 5e9c7d6..7d8487a 100644 --- a/Makefile +++ b/Makefile @@ -103,18 +103,10 @@ clean: install: echo "Installing is not supported" - -ifeq ($(ID), guix) -build_system: - @echo -e ${CL2}[$@] ${CL}building through containerized manifest...${CL3} - @guix shell --container -m ./manifest.scm -- make $(BINDIR)/gem-graph-client -j $(NTHREADS) - @echo -e ${CL2}[$@] ${CL}done.${CL3} -else build_system: @echo -e ${CL2}[$@] ${CL}building...${CL3} @make $(BINDIR)/gem-graph-client -j $(NTHREADS) @echo -e ${CL2}[$@] ${CL}done.${CL3} -endif run: build_system @echo -e ${CL2}[$@] ${CL}executing...${CL3}