ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/modules/Makefile.defs.in
Revision: 1.3
Committed: Tue Aug 28 17:08:07 2007 UTC (16 years, 9 months ago) by pippijn
Branch: MAIN
Changes since 1.2: +3 -3 lines
Log Message:
- changed name
- updated the example config to the new system
- added more documentation
- enhanced documentation generators
- added a link to the pdf to the website
- added an RSS feed generator
- transitioned hooks to c++ callbacks
- did various merges with upstream along the way
- added const where appropriate
- removed the old block allocator
- fixed most memory leaks
- transitioned some dictionaries to std::map
- transitioned some lists to std::vector
- made some free functions members where appropriate
- renamed string to dynstr and added a static string ststr
- use NOW instead of time (NULL) if possible
- completely reworked database backends, crypto handlers and protocol handlers
  to use an object factory
- removed the old module system. ermyth does not do any dynamic loading anymore
- fixed most of the build system
- reworked how protocol commands work

File Contents

# Content
1 # Copyright © 2007 Pippijn van Steenhoven / The Ermyth Team
2 # Copyright © 2005 Atheme Development Group.
3 # Rights to this code are documented in doc/pod/license.pod.
4 #
5 # This file contains common definitions.
6 #
7 # $Id: Makefile.defs.in,v 1.2 2007-07-21 01:29:08 pippijn Exp $
8 #
9
10 CXX = @CXX@
11 RM = @RM@
12 MV = @MV@
13 CP = @CP@
14 MKDEP = @MKDEP@ -DPREFIX=\"@prefix@\" -I../../include
15 HAVE_PERL = @HAVE_PERL@
16 PERL = @PERL@
17 PERLFLAGS = @PERLFLAGS@
18 PERLPRIVLIBEXP = @PERLPRIVLIBEXP@
19 PERLLIB = @PERLLIB@
20 INSTALL = @INSTALL@
21 prefix = @prefix@
22 exec_prefix = @exec_prefix@
23 datarootdir = @datarootdir@
24 bindir = @bindir@
25 datadir = @datadir@
26 sysconfdir = @sysconfdir@
27 libdir = @libdir@
28 sbindir = @sbindir@
29 localstatedir = @localstatedir@
30 DOCDIR = @DOCDIR@
31 MODDIR = @MODDIR@
32 SHAREDIR = @SHAREDIR@
33
34 # Verbose makefiles or not
35 SILENT = @SILENT@
36
37 # Want absolute paths?
38 SRCDIR = .
39 @ABSPATHS@SRCDIR= @SRCDIR@/modules/$(MODULE)
40
41 BIN = atheme@EXEEXT@
42
43 PICFLAGS = @PICFLAGS@
44
45 LIBS = @LIBS@
46 LDFLAGS = @LDFLAGS@
47 CPPFLAGS = @CPPFLAGS@
48 CXXFLAGS = @CXXFLAGS@ -I${SRCDIR}/../../include