Makefile.am 887 B

123456789101112131415161718192021222324252627282930
  1. ## Process this file with automake to produce Makefile.in
  2. SUFFIXES = .pl .sh
  3. VPATH=$(top_srcdir) $(top_srcdir)/plugins-scripts $(top_srcdir)/plugins-scripts/t
  4. libexec_SCRIPTS = check_breeze check_disk_smb check_flexlm check_ircd \
  5. check_log check_ntp check_oracle check_rpc check_sensors check_wave \
  6. check_ifstatus check_ifoperstatus check_mailq utils.sh utils.pm
  7. EXTRA_DIST=check_breeze.pl check_disk_smb.pl check_flexlm.pl check_ircd.pl \
  8. check_log.sh check_ntp.pl check_oracle.sh check_rpc.pl check_sensors.sh \
  9. check_ifstatus.pl check_ifoperstatus.pl check_wave.pl check_mailq.pl utils.sh.in utils.pm.in t
  10. TESTS_ENVIRONMENT=perl -I $(top_builddir) -I $(top_srcdir)
  11. TESTS = @SCRIPT_TEST@
  12. test:
  13. perl -I $(top_builddir) -I $(top_srcdir) ../test.pl
  14. CLEANFILES=$(libexec_SCRIPTS)
  15. .pl :
  16. $(AWK) -f ./subst $< > $@
  17. chmod +x $@
  18. .sh :
  19. $(AWK) -f ./subst $< > $@
  20. chmod +x $@