File: Makefile.am

package info (click to toggle)
dpkg 1.19.5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 46,736 kB
  • sloc: ansic: 34,655; perl: 24,060; sh: 9,640; cpp: 4,821; makefile: 1,552; sed: 104
file content (25 lines) | stat: -rw-r--r-- 822 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
## Process this file with automake to produce Makefile.in

dist_pkgdata_DATA = \
	architecture.mk \
	buildflags.mk \
	buildtools.mk \
	default.mk \
	pkg-info.mk \
	vendor.mk

do_path_subst = $(AM_V_GEN) sed \
	-e "s:dpkg_datadir[[:space:]]*=[[:space:]]*[^[:space:]]*:dpkg_datadir = $(pkgdatadir):"

install-data-hook:
	mv $(DESTDIR)$(pkgdatadir)/default.mk \
	   $(DESTDIR)$(pkgdatadir)/default.mk.tmp
	$(do_path_subst) <$(DESTDIR)$(pkgdatadir)/default.mk.tmp \
	                 >$(DESTDIR)$(pkgdatadir)/default.mk
	rm -f $(DESTDIR)$(pkgdatadir)/default.mk.tmp

	mv $(DESTDIR)$(pkgdatadir)/buildtools.mk \
	   $(DESTDIR)$(pkgdatadir)/buildtools.mk.tmp
	$(do_path_subst) <$(DESTDIR)$(pkgdatadir)/buildtools.mk.tmp \
	                 >$(DESTDIR)$(pkgdatadir)/buildtools.mk
	rm -f $(DESTDIR)$(pkgdatadir)/buildtools.mk.tmp