Mercurial > sm-archive
annotate Makefile.am @ 17:8ebecad6530f stable-1-6
Add src/daemon* missing from source control.
Switch to Mercurial source control.
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 21 Mar 2008 16:00:13 -0700 |
parents | f9e8bbf33a2a |
children | 37793d4c90a0 |
rev | line source |
---|---|
10 | 1 ACLOCAL_AMFLAGS = -I m4 |
2 | |
1 | 3 SUBDIRS = src man html info |
2 | 4 hackdir = $(sysconfdir)/sm-archive |
5 hack_SCRIPTS = sm-archive | |
6 hack_DATA = sm-archive.conf | |
17
8ebecad6530f
Add src/daemon* missing from source control.
Carl Byington <carl@five-ten-sg.com>
parents:
10
diff
changeset
|
7 htmldir = ${datadir}/doc/@PACKAGE@-@VERSION@ |
8ebecad6530f
Add src/daemon* missing from source control.
Carl Byington <carl@five-ten-sg.com>
parents:
10
diff
changeset
|
8 html_DATA = AUTHORS COPYING ChangeLog NEWS README |
2 | 9 CLEANFILES = sm-archive xml/sm-archive xml/Makefile |
10 | 10 EXTRA_DIST = sm-archive.rc $(hack_DATA) sm-archive.spec $(wildcard m4/*) $(wildcard xml/h*) $(wildcard xml/M*) $(wildcard xml/sm*) |
1 | 11 |
17
8ebecad6530f
Add src/daemon* missing from source control.
Carl Byington <carl@five-ten-sg.com>
parents:
10
diff
changeset
|
12 sm-archive: sm-archive.rc |
2 | 13 cat $(srcdir)/sm-archive.rc | \ |
1 | 14 sed -e "s,SBINDIR,$(sbindir),g" | \ |
2 | 15 sed -e "s,SYSCONFDIR,$(sysconfdir),g" >>sm-archive |
1 | 16 |
2 | 17 chkconfig: sm-archive |
18 /usr/bin/getent passwd sm-archive || /usr/sbin/useradd -r -d /etc/sm-archive -M -c "sm-archive pseudo-user" -s /sbin/nologin sm-archive | |
19 mv -f $(sysconfdir)/sm-archive /etc/rc.d/init.d | |
20 /sbin/chkconfig --del sm-archive | |
21 /sbin/chkconfig --add sm-archive | |
1 | 22 |