File: Makefile.am

package info (click to toggle)
ddcutil 2.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,580 kB
  • sloc: ansic: 75,782; makefile: 960; xml: 41; sh: 9
file content (34 lines) | stat: -rw-r--r-- 645 bytes parent folder | download | duplicates (6)
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

SUBDIRS = 
# SUBDIRS += ddcutil

if USE_DOXYGEN
  SUBDIRS += doxygen
endif

if USE_DOXYGEN
if HAVE_DOCBASE

docbasedir = $(datadir)/doc-base

docbase_DATA = ddcutil-c-api

EXTRA_DIST = ddcutil-c-api

install-data-local:
	@echo "(docs/Makefile) Executing rule install-data-local"

install-data-hook:
	@echo "(docs/Makefile) Executing rule install-data-hook"
	@echo "docbasedir     $(docbasedir)"
	@echo "datadir        $(datadir)"
	install-docs --install-changed

# uninstall-data-hook doesn't exist, use uninstall-hook: 

uninstall-hook:
	@echo "(docs/Makefile) Executing rule uninstall-data-hook"
	install-docs --install-changed 

endif
endif