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.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. config_files
  19. doc_DATA = \
  20. BUGS \
  21. ChangeLog \
  22. README \
  23. TODO \
  24. INSTALL \
  25. COPYING
  26. EXTRA_DIST = \
  27. $(doc_DATA) \
  28. Makefile.am \
  29. configure.ac
  30. MOD_DIR=snf4cgp
  31. MOD_TARBALL=CGP$(PACKAGE)-$(VERSION)-$(shell uname -s).tar.gz
  32. module:
  33. rm -rf $(MOD_DIR)
  34. mkdir $(MOD_DIR)
  35. mkdir $(MOD_DIR)/hold $(MOD_DIR)/Doc
  36. cp SNF4CGP/SNF4CGP $(MOD_DIR)
  37. cp SNFClient/SNFClient $(MOD_DIR)
  38. cp SNF2Check/SNF2Check $(MOD_DIR)
  39. cp config_files/GBUdbIgnoreList.txt.sample $(MOD_DIR)
  40. cp config_files/SNF4CGP.xml.sample $(MOD_DIR)
  41. cp config_files/identity.xml.sample $(MOD_DIR)
  42. chown -R root:mail $(MOD_DIR)
  43. tar czvf $(MOD_TARBALL) ./$(MOD_DIR)
  44. rm -rf $(MOD_DIR)
  45. @echo "Created the CommuniGate Pro module in $(MOD_TARBALL)"