Makefile.am 967 B

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