From 9138cd7e891a7bb490c0134cd6f17d2394e5e080 Mon Sep 17 00:00:00 2001 From: Gregor von Laszewski Date: Fri, 15 Dec 2023 05:26:27 -0500 Subject: [PATCH] simplify makefile --- Makefile | 8 +------- makefile-banner.mk => makefile-basic.mk | 6 ++++++ 2 files changed, 7 insertions(+), 7 deletions(-) rename makefile-banner.mk => makefile-basic.mk (59%) diff --git a/Makefile b/Makefile index d5ad6ba..4933216 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,6 @@ package=common -UNAME=$(shell uname) -VERSION=`head -1 VERSION` -include makefile-banner.mk - -source: - $(call banner, "Install cloudmesh-${package}") - pip install -e . -U +include makefile-basic.mk include makefile-test.mk diff --git a/makefile-banner.mk b/makefile-basic.mk similarity index 59% rename from makefile-banner.mk rename to makefile-basic.mk index 25f2570..6f454b2 100644 --- a/makefile-banner.mk +++ b/makefile-basic.mk @@ -1,3 +1,6 @@ +UNAME=$(shell uname) +VERSION=`head -1 VERSION` + define banner @echo @echo "############################################################" @@ -5,3 +8,6 @@ define banner @echo "############################################################" endef +source: + $(call banner, "Install cloudmesh-${package}") + pip install -e . -U