File: Makefile.am

package info (click to toggle)
systraq 0.0.20050213-8
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,380 kB
  • ctags: 2
  • sloc: sh: 747; makefile: 104
file content (31 lines) | stat: -rw-r--r-- 688 bytes parent folder | download | duplicates (3)
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
## Process this file with automake to produce Makefile.in
## $Id: Makefile.am 180 2005-01-23 17:54:03Z lfousse $

systraqdir = $(LIBEXEC_PATH)

systraq_SCRIPTS = \
    ak-uptime \
    bb-free \
    cc-df \
    dd-last \
    ee-lastlog \
    ff-netstat \
    gg-ps \
    ii-shellrc \
    nn-debsums \
    rr-localdigest \
    ww-signature

EXTRA_DIST = $(systraq_SCRIPTS)

install-exec-hook:
	$(mkdir_p) $(DESTDIR)$(SYSCONF_PATH)/systraq.d
	for i in $(systraq_SCRIPTS); do \
          $(LN_S) $(systraqdir)/$$i $(DESTDIR)$(SYSCONF_PATH)/systraq.d/$$i; \
        done

uninstall-hook:
	for i in $(systraq_SCRIPTS); do \
          rm $(DESTDIR)$(SYSCONF_PATH)/systraq.d/$$i; \
        done