ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/modules/Makefile.defs.in
Revision: 1.1
Committed: Thu Jul 19 08:24:52 2007 UTC (16 years, 10 months ago) by pippijn
Branch: MAIN
Log Message:
initial import. the most important changes since Atheme are:
- fixed many memory leaks
- fixed many bugs
- converted to C++ and use more STL containers
- added a (not very enhanced yet) perl module
- greatly improved XML-RPC speed
- added a JSON-RPC module with code from json-cpp
- added a valgrind memcheck module to operserv
- added a more object oriented base64 implementation
- added a specialised unit test framework
- improved stability
- use gettimeofday() if available
- reworked adding/removing commands
- MemoServ IGNORE DEL can now remove indices

File Contents

# Content
1 # Copyright © 2005 Atheme Development Group.
2 # Rights to this code are documented in doc/LICENSE.
3 #
4 # This file contains common definitions.
5 #
6 # $Id: Makefile.defs.in,v 1.1 2007-07-11 11:04:42 pippijn Exp $
7 #
8
9 CXX = @CXX@
10 RM = @RM@
11 MV = @MV@
12 CP = @CP@
13 MKDEP = @MKDEP@ -DPREFIX=\"@prefix@\" -I../../include
14 PERL = @PERL@
15 PERLFLAGS = @PERLFLAGS@
16 PERLPRIVLIBEXP = @PERLPRIVLIBEXP@
17 PERLLIB = @PERLLIB@
18 INSTALL = @INSTALL@
19 prefix = @prefix@
20 exec_prefix = @exec_prefix@
21 datarootdir = @datarootdir@
22 bindir = @bindir@
23 datadir = @datadir@
24 sysconfdir = @sysconfdir@
25 libdir = @libdir@
26 sbindir = @sbindir@
27 localstatedir = @localstatedir@
28 DOCDIR = @DOCDIR@
29 MODDIR = @MODDIR@
30 SHAREDIR = @SHAREDIR@
31
32 # Verbose makefiles or not
33 SILENT = @SILENT@
34
35 # Want absolute paths?
36 SRCDIR = .
37 @ABSPATHS@SRCDIR= @SRCDIR@/modules/$(MODULE)
38
39 BUILDDIR = @BUILDDIR@
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