From 8aeb080d87185d897ea7fb85bb67a5b87ba95b0f Mon Sep 17 00:00:00 2001 From: Giovanni La Mura <giovanni.lamura@inaf.it> Date: Mon, 6 Nov 2023 15:43:30 +0100 Subject: [PATCH] Add a global make docs target --- .gitignore | 1 + src/Makefile | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index ecb83700..db0984b6 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ build/cluster/* build/sphere/* build/trapping/* doc/build/* + diff --git a/src/Makefile b/src/Makefile index eb107818..544534f8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,9 +1,13 @@ SUBDIRS := cluster sphere trapping SRCDIR=$(PWD) BUILDDIR=$(SRCDIR)/../build +DOCSDIR=$(SRCDIR)/../doc all: $(SUBDIRS) +docs: + cd $(DOCSDIR)/src; doxygen config.dox + $(SUBDIRS): $(MAKE) -C $@ @@ -16,5 +20,7 @@ wipe: rm -f $(BUILDDIR)/cluster/* rm -f $(BUILDDIR)/sphere/* rm -f $(BUILDDIR)/trapping/* + if [ -d $(DOCSDIR)/build/html ]; then rm -r $(DOCSDIR)/build/html; fi + if [ -d $(DOCSDIR)/build/latex ]; then rm -r $(DOCSDIR)/build/latex; fi .PHONY: all $(SUBDIRS) -- GitLab