Skip to content
Snippets Groups Projects
Commit 8aeb080d authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Add a global make docs target

parent 86a0bf93
No related branches found
No related tags found
No related merge requests found
...@@ -3,3 +3,4 @@ build/cluster/* ...@@ -3,3 +3,4 @@ build/cluster/*
build/sphere/* build/sphere/*
build/trapping/* build/trapping/*
doc/build/* doc/build/*
SUBDIRS := cluster sphere trapping SUBDIRS := cluster sphere trapping
SRCDIR=$(PWD) SRCDIR=$(PWD)
BUILDDIR=$(SRCDIR)/../build BUILDDIR=$(SRCDIR)/../build
DOCSDIR=$(SRCDIR)/../doc
all: $(SUBDIRS) all: $(SUBDIRS)
docs:
cd $(DOCSDIR)/src; doxygen config.dox
$(SUBDIRS): $(SUBDIRS):
$(MAKE) -C $@ $(MAKE) -C $@
...@@ -16,5 +20,7 @@ wipe: ...@@ -16,5 +20,7 @@ wipe:
rm -f $(BUILDDIR)/cluster/* rm -f $(BUILDDIR)/cluster/*
rm -f $(BUILDDIR)/sphere/* rm -f $(BUILDDIR)/sphere/*
rm -f $(BUILDDIR)/trapping/* 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) .PHONY: all $(SUBDIRS)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment