Skip to content

Commit

Permalink
simplify makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
laszewsk committed Dec 15, 2023
1 parent df30564 commit 9138cd7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 1 addition & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 6 additions & 0 deletions makefile-banner.mk → makefile-basic.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
UNAME=$(shell uname)
VERSION=`head -1 VERSION`

define banner
@echo
@echo "############################################################"
@echo "# $(1) "
@echo "############################################################"
endef

source:
$(call banner, "Install cloudmesh-${package}")
pip install -e . -U

0 comments on commit 9138cd7

Please sign in to comment.