Skip to content

Commit

Permalink
default make should be noexternaltools
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangWaltenberger committed Apr 26, 2024
1 parent 29ed669 commit 5cc511c
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ VER=$(shell cat smodels/version)
HAS_FC := $(shell smodels/lib/check_fortran_compiler.sh 2> /dev/null)
HAS_CXX := $(shell command -v $(CXX) 2> /dev/null)

all: resolve_deps externaltools
all: resolve_deps # make all just resolves dependencies

check_compilers: .PHONY
ifndef HAS_FC
Expand All @@ -17,14 +17,16 @@ resolve_deps: ## resolve the deps via pip
@echo "try to resolve the python dependencies via pip"
smodels/installation.py -R

smodels: all tidy
smodels_externaltools: resolve_deps externaltools
@echo
@echo "done. you can now run the software directly from this source directory.\n"
@echo "Try e.g. \n\n ./runSModelS.py --help\n"
@echo "The latest SModelS documentation can be found at: http://smodels.readthedocs.io/en/latest/"
@echo "For this version documentation go to: https://smodels.readthedocs.io/en/v$(VER)"

smodels_noexternaltools: resolve_deps tidy
smodels: resolve_deps

smodels_noexternaltools: resolve_deps
@echo
@echo "done. you can now run the software directly from this source directory.\n"
@echo "Try e.g. \n\n ./runSModelS.py --help\n"
Expand All @@ -47,6 +49,12 @@ pythia6:
pythia8:
cd smodels/lib && make pythia8

resummino:
cd smodels/lib && make resummino

nllfast:
cd smodels/lib && make nllfast

cpp: .PHONY
cd cpp && make

Expand Down

0 comments on commit 5cc511c

Please sign in to comment.