]> Dogcows Code - chaz/tar/blob - scripts/Makefile.am
Updated
[chaz/tar] / scripts / Makefile.am
1 # Copyright (C) 2004 Free Software Foundation, Inc.
2
3 ## This program is free software; you can redistribute it and/or modify
4 ## it under the terms of the GNU General Public License as published by
5 ## the Free Software Foundation; either version 2, or (at your option)
6 ## any later version.
7
8 ## This program is distributed in the hope that it will be useful,
9 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 ## GNU General Public License for more details.
12
13 ## You should have received a copy of the GNU General Public License
14 ## along with this program; if not, write to the Free Software
15 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
16 ## 02111-1307, USA.
17
18 libexec_SCRIPTS=backup.sh dump-remind
19 AM_INSTALLCHECK_STD_OPTIONS_EXEMPT=backup.sh dump-remind
20 sbin_SCRIPTS=backup restore
21 EXTRA_DIST=\
22 backup.sh.in\
23 backup.in\
24 restore.in\
25 dump-remind.in\
26 backup-specs
27 CLEANFILES=backup.sh backup restore dump-remind
28
29 SED_CMD="s,\@libexecdir\@,$(libexecdir),;\
30 s,\@sysconfdir\@,$(sysconfdir),;\
31 s,\@PACKAGE\@,$(PACKAGE),;\
32 s,\@VERSION\@,$(VERSION),;\
33 s,\@PACKAGE_BUGREPORT\@,$(PACKAGE_BUGREPORT),;\
34 s,\@DATE_FORMAT_OK\@,$(DATE_FORMAT_OK),;@BACKUP_SED_COND@"
35
36 backup.sh: $(srcdir)/backup.sh.in
37 sed $(SED_CMD) $? > $@
38
39 backup: $(srcdir)/backup.in
40 sed $(SED_CMD) $? > $@
41
42 restore: $(srcdir)/restore.in
43 sed $(SED_CMD) $? > $@
44
45 dump-remind: $(srcdir)/dump-remind.in
46 sed $(SED_CMD) $? > $@
This page took 0.036556 seconds and 5 git commands to generate.