[go: up one dir, main page]

File: Makefile.am

package info (click to toggle)
id3lib3.8.3 3.8.3-18
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 5,636 kB
  • sloc: cpp: 12,364; sh: 9,186; ansic: 7,240; makefile: 355; php: 325
file content (51 lines) | stat: -rw-r--r-- 1,617 bytes parent folder | download | duplicates (10)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright (C) 1999 Scott Thomas Haug <scott@id3.org>
#  
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without 
# modifications, as long as this notice is preserved.
# 
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

EXTRA_DIST =            \
  Doxyfile              \
  Doxyfile.in           \
  3d-logo.gif           \
  attilas_id3logo.jpg   \
  fillpx.gif            \
  id3guide.html         \
  id3lib-manual.php     \
  id3lib.css            \
  id3v2.3.0.html        \
  id3v2.3.0.txt         \
  id3v2.gif             \
  id3v2.ico             \
  id3v2.png             \
  index.html            \
  index.html.in         \
  musicmatch.txt

Doxyfile: $(srcdir)/Doxyfile.in  $(top_builddir)/config.status
	cd $(top_builddir) \
	  && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status

index.html: $(srcdir)/index.html.in  $(top_builddir)/config.status
	cd $(top_builddir) \
	  && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status

docsdistdir = $(PACKAGE)-doc-$(VERSION)

dox: Doxyfile
	-rm -rf @DOX_DIR_HTML@ @DOX_DIR_LATEX@
	cd $(srcdir) && doxygen Doxyfile

docs: dox index.html id3lib.css
	-rm -rf $(docsdistdir).*
	cd $(srcdir)/@DOX_DIR_LATEX@ && \
	make pdf && \
	(cp *.pdf ../$(docsdistdir).pdf || true) && \
	cp *.ps ../$(docsdistdir).ps && \
	gzip -9 ../$(docsdistdir).ps
	-rm -rf $(srcdir)/@DOX_DIR_LATEX@