aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTaylor Holberton <taylorcholberton@gmail.com>2016-10-01 18:32:14 -0400
committerTaylor Holberton <taylorcholberton@gmail.com>2016-10-01 18:32:14 -0400
commit55bc0015b8a1e91e13b0349f9bdaf6f06b088710 (patch)
treef7e8d25f4b00dd70353e582d495a74921c26c471 /Makefile
parentd950fb69f2d5df782a95bc9470f24168e2995218 (diff)
added doxygen subdir to all targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index aa6c49d..0956131 100644
--- a/Makefile
+++ b/Makefile
@@ -10,11 +10,13 @@ export CROSS_COMPILE =
all:
$(MAKE) -C src
$(MAKE) -C utils
+ $(MAKE) -C doxygen
.PHONY: clean
clean:
$(MAKE) -C src clean
$(MAKE) -C utils clean
+ $(MAKE) -C doxygen clean
.PHONY: install
install: $(LIB) $(SHLIB)
@@ -22,4 +24,5 @@ install: $(LIB) $(SHLIB)
cp -Ru $(INCDIR)/tinyalsa $(PREFIX)/include/
$(MAKE) -C src install
$(MAKE) -C utils install
+ $(MAKE) -C doxygen install