mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
Summay: Added doc-pack and doc-clean rules
This commit is contained in:
parent
954e2df37c
commit
43190ac973
1 changed files with 13 additions and 0 deletions
|
|
@ -6,3 +6,16 @@ INCLUDES=-I$(top_srcdir)/include
|
|||
|
||||
doc:
|
||||
doxygen doxygen.cfg
|
||||
|
||||
doc-pack: doc
|
||||
-chmod a+r $(top_srcdir)/doc/doxygen/html/*
|
||||
-chmod a-w $(top_srcdir)/doc/doxygen/html/*
|
||||
if ! test -z "$(AMTAR)"; then \
|
||||
$(AMTAR) --create --directory=$(top_srcdir)/doc/doxygen/html --verbose --file=- . | bzip2 -c -9 > $(top_srcdir)/../alsa-lib-doc.tar.bz2 ; \
|
||||
else \
|
||||
$(TAR) --create --directory=$(top_srcdir)/doc/doxygen/html --verbose --file=- . | bzip2 -c -9 > $(top_srcdir)/../alsa-lib-doc.tar.bz2 ; \
|
||||
fi
|
||||
rm -f $(top_srcdir)/doc/doxygen/html/*
|
||||
|
||||
doc-clean:
|
||||
rm -f $(top_srcdir)/doc/doxygen/html/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue