File: Makefile.am

package info (click to toggle)
cyphesis-cpp 0.5.21-1.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 5,880 kB
  • ctags: 4,113
  • sloc: cpp: 35,916; python: 5,277; xml: 4,930; sh: 4,165; makefile: 1,456; ansic: 572
file content (36 lines) | stat: -rw-r--r-- 1,239 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

SUBDIRS = libraries physics common modules rulesets server client data \
          tools tests man dox

docdir = $(datadir)/doc/cyphesis-$(VERSION)
dist_doc_DATA = README COPYING AUTHORS THANKS NEWS FIXME

rulesetdir = $(datadir)/cyphesis/rulesets

socketdir = $(localstatedir)/tmp
socket_DATA =

install-data-hook:
	chmod 1777 $(DESTDIR)$(socketdir)
	@echo 
	@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"
	@echo "PostgreSQL account and database required, or run it as root."
	@echo 
	@echo "For detailed instructions please see the README file."
	@echo 

EXTRA_DIST = cyphesis.spec Doxyfile autogen.sh \
             cyphesis.init cyclient.init cyphesis.sysconfig \
             scripts/compile_python.py scripts/gen_op.py \
             scripts/gen_buildid.py scripts/cyphesis-setup.sh \
             scripts/extract_revision.sh

docs:
	@echo "running doxygen..."
	@doxygen Doxyfile
	@doxygen Doxyfile-python
	@echo "documentation is in doc/."
	@echo "python documentation is in python_doc/."