Skip to content

Commit

Permalink
Makefile - add install-top-only target
Browse files Browse the repository at this point in the history
Add a target that does BUILD_VIRTME_NG_INIT=0 make rather than the
full monty (with =1).  This is slightly lighter weight.  Perhaps we
need a recursive make ?

Signed-off-by: Jim Cromie <[email protected]>
  • Loading branch information
jimc committed Jul 23, 2024
1 parent 0148f15 commit 76d123d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@ install: install_from_source
install_from_source:
@echo "Version: $(GIT_DESCRIBE)"
BUILD_VIRTME_NG_INIT=1 pip3 install --verbose -r requirements.txt $(INSTALL_ARGS) .

install_only_top:
@echo "Version: $(GIT_DESCRIBE)"
BUILD_VIRTME_NG_INIT=0 pip3 install --verbose -r requirements.txt $(INSTALL_ARGS) .

0 comments on commit 76d123d

Please sign in to comment.