Makefile.am 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Copyright (C) 2004, 2006, 2007 Free Software Foundation, Inc.
  2. ## This program is free software; you can redistribute it and/or modify
  3. ## it under the terms of the GNU General Public License as published by
  4. ## the Free Software Foundation; either version 3, or (at your option)
  5. ## any later version.
  6. ## This program is distributed in the hope that it will be useful,
  7. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. ## GNU General Public License for more details.
  10. ## You should have received a copy of the GNU General Public License
  11. ## along with this program; if not, write to the Free Software
  12. ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  13. ## 02110-1301, USA.
  14. BACKUP_LIBEXEC_SCRIPTS_LIST=backup.sh dump-remind
  15. BACKUP_SBIN_SCRIPTS_LIST=backup restore
  16. libexec_SCRIPTS=@BACKUP_LIBEXEC_SCRIPTS@
  17. AM_INSTALLCHECK_STD_OPTIONS_EXEMPT=backup.sh dump-remind
  18. sbin_SCRIPTS=@BACKUP_SBIN_SCRIPTS@
  19. EXTRA_SCRIPTS=tarcat
  20. EXTRA_DIST=\
  21. backup.sh.in\
  22. backup.in\
  23. restore.in\
  24. dump-remind.in\
  25. backup-specs
  26. CLEANFILES=backup.sh backup restore dump-remind
  27. SED_CMD="s,\@libexecdir\@,$(libexecdir),;\
  28. s,\@sysconfdir\@,$(sysconfdir),;\
  29. s,\@PACKAGE_NAME\@,$(PACKAGE_NAME),;\
  30. s,\@VERSION\@,$(VERSION),;\
  31. s,\@PACKAGE_BUGREPORT\@,$(PACKAGE_BUGREPORT),;\
  32. s,\@DATE_FORMAT_OK\@,$(DATE_FORMAT_OK),;@BACKUP_SED_COND@"
  33. backup.sh: $(srcdir)/backup.sh.in
  34. sed $(SED_CMD) $? > $@
  35. backup: $(srcdir)/backup.in
  36. sed $(SED_CMD) $? > $@
  37. restore: $(srcdir)/restore.in
  38. sed $(SED_CMD) $? > $@
  39. dump-remind: $(srcdir)/dump-remind.in
  40. sed $(SED_CMD) $? > $@