Makefile.am 916 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_oracle check_rpc check_sensors check_wave \
  6. check_ifstatus check_ifoperstatus check_mailq check_file_age \
  7. utils.sh utils.pm
  8. EXTRA_DIST=check_breeze.pl check_disk_smb.pl check_flexlm.pl check_ircd.pl \
  9. check_log.sh check_ntp.pl check_oracle.sh check_rpc.pl check_sensors.sh \
  10. check_ifstatus.pl check_ifoperstatus.pl check_wave.pl check_mailq.pl check_file_age.pl \
  11. utils.sh.in utils.pm.in t
  12. TESTS_ENVIRONMENT=perl -I $(top_builddir) -I $(top_srcdir)
  13. TESTS = @SCRIPT_TEST@
  14. test:
  15. perl -I $(top_builddir) -I $(top_srcdir) ../test.pl
  16. CLEANFILES=$(libexec_SCRIPTS)
  17. .pl :
  18. $(AWK) -f ./subst $< > $@
  19. chmod +x $@
  20. .sh :
  21. $(AWK) -f ./subst $< > $@
  22. chmod +x $@