hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Disable doxygen usage
 
In order to avoid a dependency on doxygen on the build machine, this
patch adjusts the main Makefile to not build and install the
documentation.
 
[Vincent: tweak patch for 1.1.1 version]
 
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
 
diff -rup a/Makefile b/Makefile
--- a/Makefile    2017-05-24 05:23:57.000000000 +0100
+++ b/Makefile    2017-05-25 10:35:20.781747053 +0100
@@ -11,14 +11,12 @@ export MANDIR ?= $(PREFIX)/share/man
 all:
     $(MAKE) -C src
     $(MAKE) -C utils
-    $(MAKE) -C doxygen
     $(MAKE) -C examples
 
 .PHONY: clean
 clean:
     $(MAKE) -C src clean
     $(MAKE) -C utils clean
-    $(MAKE) -C doxygen clean
     $(MAKE) -C examples clean
 
 .PHONY: install
@@ -30,5 +28,4 @@ install:
     install include/tinyalsa/version.h $(DESTDIR)$(INCDIR)/
     $(MAKE) -C src install
     $(MAKE) -C utils install
-    $(MAKE) -C doxygen install