File: Makefile.am

package info (click to toggle)
janus 1.1.2-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,792 kB
  • sloc: ansic: 87,789; javascript: 16,056; makefile: 696; sh: 282; python: 257; lisp: 9
file content (28 lines) | stat: -rw-r--r-- 503 bytes parent folder | download | duplicates (2)
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
if ENABLE_DOCS

doxygendir = $(htmldir)/janus-gateway-$(VERSION)

EXTRA_DIST = html

all: html-local

html-local:
	doxygen janus-doxygen.cfg
	cp doxy-boot.js html/
	mkdir -p html/css
	cp ../html/css/demo.css html/css/
	mkdir -p html/js
	cp ../html/favicon.ico html/
	cp ../html/meetecho-logo.png html/

install-data-local: html-local
	$(MKDIR_P) $(DESTDIR)$(doxygendir)
	cp -r html/ $(DESTDIR)$(doxygendir)

uninstall-local:
	rm -rf $(DESTDIR)$(doxygendir)

clean-local:
	rm -rf $(builddir)/html

endif