- ## Process this file with automake to produce Makefile.in
- ##
- ## $Id: Makefile.am,v 1.2 2007/05/29 19:06:09 adeniz Exp $
- ##
- ## automake input for the MicroNeil SNF4CGP distribution (top directory).
- ##
- ## Author: Alban Deniz
- ##
- ## Copyright (C) 2009 ARM Research Labs, LLC.
- ## See www.armresearch.com for the copyright terms.
- ##
-
- SUBDIRS = \
- CodeDweller \
- SNFMulti \
- SNF4CGP \
- SNF2Check \
- SNFClient \
- Scripts \
- config_files
-
- doc_DATA = \
- BUGS \
- ChangeLog \
- README \
- TODO \
- INSTALL \
- COPYING
-
- EXTRA_DIST = \
- $(doc_DATA) \
- Makefile.am \
- configure.ac
-
- MOD_DIR=CGPSNF
- MOD_TARBALL=CGPSNF-$(VERSION)-$(shell uname -s).tar.gz
- module:
- rm -rf $(MOD_DIR)
- mkdir $(MOD_DIR)
- chmod 2770 $(MOD_DIR)
- mkdir $(MOD_DIR)/hold $(MOD_DIR)/Doc
- cp SNF4CGP/SNF4CGP $(MOD_DIR)/CGPSNF
- cp SNFClient/SNFClient $(MOD_DIR)
- cp SNF2Check/SNF2Check $(MOD_DIR)
- cp Scripts/getRulebase.sample $(MOD_DIR)
- cp Scripts/junkmsg.txt $(MOD_DIR)
- cp Scripts/cleanmsg.txt $(MOD_DIR)
- cp config_files/GBUdbIgnoreList.txt.sample $(MOD_DIR)
- cp config_files/snf_engine.xml.sample $(MOD_DIR)
- cp config_files/identity.xml.sample $(MOD_DIR)
- cp Doc/AdminStyle.css $(MOD_DIR)/Doc
- cp Doc/GuideStyle.css $(MOD_DIR)/Doc
- cp Doc/CGPLogo.gif $(MOD_DIR)/Doc
- cp Doc/DownLoad.gif $(MOD_DIR)/Doc
- cp Doc/default.html $(MOD_DIR)/Doc
- chown -R root:mail $(MOD_DIR)
- tar czvf $(MOD_TARBALL) ./$(MOD_DIR)
- rm -rf $(MOD_DIR)
- @echo "Created the CommuniGate Pro module in $(MOD_TARBALL)"
|