You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.am 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. ## Process this file with automake to produce Makefile.in
  2. ##
  3. ## $Id: Makefile.am,v 1.2 2007/05/29 19:06:09 adeniz Exp $
  4. ##
  5. ## automake input for the MicroNeil SNF4CGP distribution (top directory).
  6. ##
  7. ## Author: Alban Deniz
  8. ##
  9. ## Copyright (C) 2009 ARM Research Labs, LLC.
  10. ## See www.armresearch.com for the copyright terms.
  11. ##
  12. SUBDIRS = \
  13. CodeDweller \
  14. SNFMulti \
  15. SNF4CGP \
  16. SNF2Check \
  17. SNFClient \
  18. Scripts \
  19. config_files
  20. doc_DATA = \
  21. BUGS \
  22. ChangeLog \
  23. README \
  24. TODO \
  25. INSTALL \
  26. COPYING
  27. EXTRA_DIST = \
  28. $(doc_DATA) \
  29. Makefile.am \
  30. configure.ac \
  31. Doc/AdminStyle.css \
  32. Doc/GuideStyle.css \
  33. Doc/CGPLogo.gif \
  34. Doc/DownLoad.gif \
  35. Doc/default.html
  36. MOD_DIR=CGPSNF
  37. MOD_TARBALL=CGPSNF-$(VERSION)-$(shell uname -s).tar.gz
  38. module:
  39. rm -rf $(MOD_DIR)
  40. mkdir $(MOD_DIR)
  41. chmod 2770 $(MOD_DIR)
  42. mkdir $(MOD_DIR)/hold $(MOD_DIR)/Doc
  43. cp SNF4CGP/SNF4CGP $(MOD_DIR)/CGPSNF
  44. cp SNFClient/SNFClient $(MOD_DIR)
  45. cp SNF2Check/SNF2Check $(MOD_DIR)
  46. cp Scripts/getRulebase.sample $(MOD_DIR)
  47. cp Scripts/junkmsg.txt $(MOD_DIR)
  48. cp Scripts/cleanmsg.txt $(MOD_DIR)
  49. cp config_files/GBUdbIgnoreList.txt.sample $(MOD_DIR)
  50. cp config_files/snf_engine.xml.sample $(MOD_DIR)
  51. cp config_files/identity.xml.sample $(MOD_DIR)
  52. cp Doc/AdminStyle.css $(MOD_DIR)/Doc
  53. cp Doc/GuideStyle.css $(MOD_DIR)/Doc
  54. cp Doc/CGPLogo.gif $(MOD_DIR)/Doc
  55. cp Doc/DownLoad.gif $(MOD_DIR)/Doc
  56. cp Doc/default.html $(MOD_DIR)/Doc
  57. chown -R root:mail $(MOD_DIR)
  58. tar czvf $(MOD_TARBALL) ./$(MOD_DIR)
  59. rm -rf $(MOD_DIR)
  60. @echo "Created the CommuniGate Pro module in $(MOD_TARBALL)"