File: Makefile.am

package info (click to toggle)
ifupdown-scripts-zg2 0.2-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 484 kB
  • ctags: 55
  • sloc: sh: 4,037; makefile: 37
file content (22 lines) | stat: -rw-r--r-- 655 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

# the foodir should propagate through from the top level Makefile

confdir = ${sysconfdir}/network
execifddir = ${confdir}/ifupdown-scripts-zg2.d

# installing address via automake mechanism assures directory existence

execifd_SCRIPTS = $(wildcard [^M]*)

# install rest of files - automake would install Makefiles

#install-exec-hook:
#	mkdir -p ${execifddir}
#	tar --create --file - --exclude Makefile\* * | \
#	tar --extract --file - --directory ${DESTDIR}${execifddir}

#uninstall-local:
#	for f in `tar --create --file /dev/null --exclude Makefile\* --verbose *`; do \
#	  rm ${DESTDIR}${execifddir}/$${f}; \
#	done
#	rmdir ${DESTDIR}${execifddir}