Makefile.in 518 B

1234567891011121314151617181920212223242526272829303132
  1. ###############################
  2. # Makefile for NRPE
  3. #
  4. # Last Modified: 01/21/2000
  5. ###############################
  6. # Source code directories
  7. SRC_BASE=./src/
  8. SRC_COMMON=./common/
  9. all: nrpe check_nrpe
  10. nrpe:
  11. cd $(SRC_BASE); $(MAKE) ; cd ..
  12. check_nrpe:
  13. cd $(SRC_BASE); $(MAKE) ; cd ..
  14. clean:
  15. cd $(SRC_BASE); $(MAKE) $@ ; cd ..
  16. rm -f core
  17. distclean: clean
  18. cd $(SRC_BASE); $(MAKE) $@ ; cd ..
  19. rm -f config.log config.status config.cache Makefile \
  20. $(SRC_COMMON)/config.h \
  21. devclean: distclean
  22. rm -f *~ */*~