File: Makefile.am

package info (click to toggle)
caspar 20180315-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 848 kB
  • sloc: sh: 566; makefile: 124
file content (20 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
## Process this file with automake to produce Makefile.in
## This file is maintained at http://git.mdcc.cx/caspar

PACKAGE = @PACKAGE_TARNAME@

mkdir = $(datadir)/$(PACKAGE)/mk
mk_DATA = caspar.mk docbook.mk pod.mk
EXTRA_DIST = caspar.mk docbook.mk pod.mk

install-data-hook:
	$(mkdir_p) $(DESTDIR)$(includedir)/$(PACKAGE)/mk
	for f in $(mk_DATA); do \
          $(LN_S) $(mkdir)/$$f $(DESTDIR)$(includedir)/$(PACKAGE)/mk/$$f; \
        done

uninstall-hook:
	for f in $(mk_DATA); do \
          rm $(DESTDIR)$(includedir)/$(PACKAGE)/mk/$$f; \
        done