Last change
on this file since 270 was
270,
checked in by Sam Hocevar, 19 years ago
|
- configure.ac NEWS:
+ Prepared release 0.4.
- src/graphics.c README BUGS TODO:
+ Updated documentation.
- Makefile.am doc/Makefile.am:
+ Install the generated doxygen documentation.
|
File size:
933 bytes
|
Line | |
---|
1 | EXTRA_DIST = doxygen.cfg.in footer.html header.html $(man_MANS) |
---|
2 | |
---|
3 | man_MANS = caca-config.1 cacademo.1 caca-spritedit.1 cacaview.1 |
---|
4 | |
---|
5 | if DOXYGEN |
---|
6 | htmldoc_DATA = html/doxygen.css html/doxygen.png |
---|
7 | htmldocdir = $(datadir)/doc/libcaca-dev/html |
---|
8 | if LATEX |
---|
9 | psdoc_DATA = latex/refman.ps |
---|
10 | psdocdir = $(datadir)/doc/libcaca-dev/ps |
---|
11 | endif |
---|
12 | endif |
---|
13 | |
---|
14 | html/doxygen.css html/doxygen.png: stamp-doxygen |
---|
15 | latex/refman.ps: stamp-latex |
---|
16 | |
---|
17 | stamp-doxygen: |
---|
18 | if DOXYGEN |
---|
19 | doxygen doxygen.cfg |
---|
20 | touch stamp-doxygen |
---|
21 | endif |
---|
22 | |
---|
23 | stamp-latex: stamp-doxygen |
---|
24 | if DOXYGEN |
---|
25 | if LATEX |
---|
26 | cd latex && $(MAKE) $(AM_CFLAGS) ps |
---|
27 | touch stamp-latex |
---|
28 | endif |
---|
29 | endif |
---|
30 | |
---|
31 | clean: clean-local |
---|
32 | clean-local: |
---|
33 | -rm -Rf html latex man |
---|
34 | -rm -f stamp-latex stamp-doxygen |
---|
35 | |
---|
36 | install-data-local: |
---|
37 | if DOXYGEN |
---|
38 | $(mkinstalldirs) $(DESTDIR)$(datadir)/doc/libcaca-dev/html |
---|
39 | cp html/*.html $(DESTDIR)$(datadir)/doc/libcaca-dev/html |
---|
40 | $(mkinstalldirs) $(DESTDIR)$(mandir)/man3 |
---|
41 | cp man/man3/*.3caca $(DESTDIR)$(mandir)/man3 |
---|
42 | endif |
---|
43 | |
---|
Note: See
TracBrowser
for help on using the repository browser.