File: Makefile.am

package info (click to toggle)
tango 8.1.2c%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 21,964 kB
  • ctags: 14,286
  • sloc: cpp: 133,954; sh: 14,704; ansic: 1,083; makefile: 944; java: 215; python: 55
file content (38 lines) | stat: -rw-r--r-- 994 bytes parent folder | download | duplicates (3)
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
SUBDIRS = html

man3dir = $(mandir)/man3
docdir_log  = $(docdir)/@PACKAGE_TARNAME@-@PACKAGE_VERSION@

EXTRA_DIST = \
	mainPage.txt

.PHONY: dox pdf

all-local: dox

dox: html html/api/index.html
html/api/index.html: Doxyfile
	@DOXYGEN@

install-data-local:
	$(mkinstalldirs) $(DESTDIR)$(man3dir)
	@for i in ./man/man3/log4tango.3 ./man/man3/log4tango_*.3; do \
		inst=`basename $$i | sed 's/_/::/g'`; \
		echo "$(INSTALL_DATA) $$i $(DESTDIR)$(man3dir)/$$inst"; \
		$(INSTALL_DATA) $$i $(DESTDIR)$(man3dir)/$$inst; \
	done
	$(mkinstalldirs) $(DESTDIR)$(docdir_log)
	cp -r html/. $(DESTDIR)$(docdir_log)
	$(RM) -r -f $(DESTDIR)$(docdir_log)/CVS \
		$(DESTDIR)$(docdir_log)/Makefile.am \
		$(DESTDIR)$(docdir_log)/Makefile.in \
		$(DESTDIR)$(docdir_log)/Makefile

uninstall-local:
	$(RM) $(DESTDIR)$(man3dir)/log4tango.3
	$(RM) $(DESTDIR)$(man3dir)/log4tango::*.3
	$(RM) -r -f $(DESTDIR)$(docdir_log)

clean-local:
	$(RM) -r latex
	$(RM) -r html/api man @PACKAGE_TARNAME@.ps @PACKAGE_TARNAME@.pdf