Skip to content

Commit

Permalink
Merge pull request #30 from infotroph/phony-fix
Browse files Browse the repository at this point in the history
[build] Fix targets not marked phony
  • Loading branch information
dlebauer authored Feb 12, 2025
2 parents 592700c + 71f8788 commit a214fbf
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ DOXYFILE = docs/Doxyfile
DOXYGEN_HTML_DIR = docs/html
DOXYGEN_LATEX_DIR = docs/latex

# all: estimate sensTest sipnet transpose subsetData
all: estimate sipnet transpose subsetData document

# Only update docs if source files or Doxyfile have changed
Expand Down Expand Up @@ -91,9 +90,9 @@ testclean: $(SIPNET_TEST_DIRS_CLEAN)
$(SIPNET_TEST_DIRS_CLEAN):
$(MAKE) -C $(basename $@) clean

.PHONY: all clean document estimate sipnet transpose subsetData doxygen
test $(SIPNET_TEST_DIRS) pretest posttest $(SIPNET_LIB) testrun
$(SIPNET_TEST_DIRS_RUN) testclean $(SIPNET_TEST_DIRS_CLEAN)
.PHONY: all clean document estimate sipnet transpose subsetData doxygen \
test $(SIPNET_TEST_DIRS) pretest posttest $(SIPNET_LIB) testrun \
$(SIPNET_TEST_DIRS_RUN) testclean $(SIPNET_TEST_DIRS_CLEAN) help

help:
@echo "Available targets:"
Expand Down

0 comments on commit a214fbf

Please sign in to comment.