2012-10-02 11:05:00 +01:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2000-08-13 20:36:18 +00:00
|
|
|
|
2015-09-20 20:03:13 +02:00
|
|
|
SUBDIRS = libraries physics common modules rulesets navigation server client aiclient data \
|
2008-09-16 22:18:39 +00:00
|
|
|
tools tests man dox
|
2000-08-13 20:36:18 +00:00
|
|
|
|
2002-09-13 10:23:31 +00:00
|
|
|
docdir = $(datadir)/doc/cyphesis-$(VERSION)
|
2006-06-30 15:11:57 +00:00
|
|
|
dist_doc_DATA = README COPYING AUTHORS THANKS NEWS FIXME
|
2002-09-13 10:23:31 +00:00
|
|
|
|
|
|
|
|
rulesetdir = $(datadir)/cyphesis/rulesets
|
|
|
|
|
|
2004-05-23 00:28:07 +00:00
|
|
|
socketdir = $(localstatedir)/tmp
|
2003-11-21 01:44:25 +00:00
|
|
|
socket_DATA =
|
|
|
|
|
|
2012-12-04 22:37:49 +00:00
|
|
|
# FIXME Remove the mkdir hack if it gets fixed in a future automake
|
2005-06-07 15:30:30 +00:00
|
|
|
install-data-hook:
|
2012-12-03 22:50:27 +01:00
|
|
|
mkdir -p $(DESTDIR)$(socketdir)
|
2005-06-12 13:09:08 +00:00
|
|
|
chmod 1777 $(DESTDIR)$(socketdir)
|
2007-03-08 14:14:00 +00:00
|
|
|
@echo
|
2007-02-17 20:16:28 +00:00
|
|
|
@echo "Cyphesis is not yet ready to run."
|
|
|
|
|
@echo "Unless you have configured the server to run without a database, Cyphesis"
|
|
|
|
|
@echo "requires access to a PostgreSQL database to store rules and account data."
|
|
|
|
|
@echo "Please run 'sudo $(top_srcdir)/scripts/cyphesis-setup.sh' to create the"
|
2007-07-07 16:21:12 +00:00
|
|
|
@echo "PostgreSQL account and database required, or run it as root."
|
2007-02-17 20:16:28 +00:00
|
|
|
@echo
|
|
|
|
|
@echo "For detailed instructions please see the README file."
|
2007-03-08 14:14:00 +00:00
|
|
|
@echo
|
2005-06-07 15:30:30 +00:00
|
|
|
|
2006-01-19 00:09:37 +00:00
|
|
|
EXTRA_DIST = cyphesis.spec Doxyfile autogen.sh \
|
2006-08-02 13:50:05 +00:00
|
|
|
cyphesis.init cyclient.init cyphesis.sysconfig \
|
2006-12-27 11:19:19 +00:00
|
|
|
scripts/compile_python.py scripts/gen_op.py \
|
2009-03-10 17:43:05 +00:00
|
|
|
scripts/gen_buildid.py scripts/cyphesis-setup.sh \
|
|
|
|
|
scripts/extract_revision.sh
|
2004-07-30 22:36:47 +00:00
|
|
|
|
|
|
|
|
docs:
|
|
|
|
|
@echo "running doxygen..."
|
|
|
|
|
@doxygen Doxyfile
|
2006-08-02 13:06:58 +00:00
|
|
|
@doxygen Doxyfile-python
|
2004-07-30 22:36:47 +00:00
|
|
|
@echo "documentation is in doc/."
|
2006-08-02 13:06:58 +00:00
|
|
|
@echo "python documentation is in python_doc/."
|