Makefile.am 928 B

1234567891011121314151617181920212223242526272829303132
  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. AM_INSTALL_PROGRAM_FLAGS=@INSTALL_OPTS@
  16. .pl :
  17. $(AWK) -f ./subst $< > $@
  18. chmod +x $@
  19. .sh :
  20. $(AWK) -f ./subst $< > $@
  21. chmod +x $@