]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/template/main.mk
Remove the preconfigured Charybdis and UnrealIRCd module files.
[user/henk/code/inspircd.git] / make / template / main.mk
1 %target GNUmakefile
2 #
3 # InspIRCd -- Internet Relay Chat Daemon
4 #
5 #   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
6 #
7 # This file is part of InspIRCd.  InspIRCd is free software: you can
8 # redistribute it and/or modify it under the terms of the GNU General Public
9 # License as published by the Free Software Foundation, version 2.
10 #
11 # This program is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14 # details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19
20
21 #
22 #               InspIRCd Main Makefile
23 #
24 # This file is automagically generated by configure, from
25 # make/template/main.mk. Any changes made to the generated
26 #     files will go away whenever it is regenerated!
27 #
28 # Please do not edit unless you know what you're doing.
29 #
30
31
32 CXX = @CXX@
33 COMPILER = @COMPILER_NAME@
34 SYSTEM = @SYSTEM_NAME@
35 BUILDPATH ?= $(PWD)/build
36 SOCKETENGINE = @SOCKETENGINE@
37 CORECXXFLAGS = -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -pipe -Iinclude -Wall -Wextra -Wfatal-errors -Wno-unused-parameter -Wshadow
38 LDLIBS = -lstdc++
39 CORELDFLAGS = -rdynamic -L. $(LDFLAGS)
40 PICLDFLAGS = -fPIC -shared -rdynamic $(LDFLAGS)
41 BASE = "$(DESTDIR)@BASE_DIR@"
42 CONPATH = "$(DESTDIR)@CONFIG_DIR@"
43 MANPATH = "$(DESTDIR)@MANUAL_DIR@"
44 MODPATH = "$(DESTDIR)@MODULE_DIR@"
45 LOGPATH = "$(DESTDIR)@LOG_DIR@"
46 DATPATH = "$(DESTDIR)@DATA_DIR@"
47 BINPATH = "$(DESTDIR)@BINARY_DIR@"
48 SCRPATH = "$(DESTDIR)@SCRIPT_DIR@"
49 INSTALL = install
50 INSTUID = @UID@
51 INSTMODE_DIR = 0750
52 INSTMODE_BIN = 0750
53 INSTMODE_LIB = 0640
54
55 ifneq ($(COMPILER), ICC)
56   CORECXXFLAGS += -Woverloaded-virtual -Wshadow
57 ifneq ($(SYSTEM), openbsd)
58     CORECXXFLAGS += -pedantic -Wformat=2 -Wmissing-format-attribute
59 endif
60 endif
61
62 ifneq ($(SYSTEM), darwin)
63   LDLIBS += -pthread
64 endif
65
66 ifeq ($(SYSTEM), linux)
67   LDLIBS += -ldl -lrt
68 endif
69 ifeq ($(SYSTEM), gnukfreebsd)
70   LDLIBS += -ldl -lrt
71 endif
72 ifeq ($(SYSTEM), gnu)
73   LDLIBS += -ldl -lrt
74 endif
75 ifeq ($(SYSTEM), solaris)
76   LDLIBS += -lsocket -lnsl -lrt -lresolv
77   INSTALL = ginstall
78 endif
79 ifeq ($(SYSTEM), darwin)
80   LDLIBS += -ldl
81   CORELDFLAGS = -dynamic -bind_at_load -L. $(LDFLAGS)
82   PICLDFLAGS = -fPIC -shared -twolevel_namespace -undefined dynamic_lookup $(LDFLAGS)
83 endif
84
85 ifndef INSPIRCD_DEBUG
86   INSPIRCD_DEBUG=0
87 endif
88
89 DBGOK=0
90 ifeq ($(INSPIRCD_DEBUG), 0)
91   CORECXXFLAGS += -fno-rtti -O2
92 ifeq ($(COMPILER), GCC)
93     CORECXXFLAGS += -g1
94 endif
95   HEADER = std-header
96   DBGOK=1
97 endif
98 ifeq ($(INSPIRCD_DEBUG), 1)
99   CORECXXFLAGS += -O0 -g3 -Werror -DINSPIRCD_ENABLE_RTTI
100   HEADER = debug-header
101   DBGOK=1
102 endif
103 ifeq ($(INSPIRCD_DEBUG), 2)
104   CORECXXFLAGS += -fno-rtti -O2 -g3
105   HEADER = debug-header
106   DBGOK=1
107 endif
108 FOOTER = finishmessage
109
110 MAKEFLAGS += --no-print-directory
111
112 SOURCEPATH = $(shell /bin/pwd)
113
114 ifndef INSPIRCD_VERBOSE
115   MAKEFLAGS += --silent
116 endif
117
118 ifdef INSPIRCD_STATIC
119   CORECXXFLAGS += -DINSPIRCD_STATIC
120 endif
121
122 # Add the users CPPFLAGS/CXXFLAGS to the base ones to allow them to
123 # override things like -Wfatal-errors if they wish to.
124 CORECXXFLAGS += $(CPPFLAGS) $(CXXFLAGS)
125
126 export BUILDPATH
127 export CORECXXFLAGS
128 export CORELDFLAGS
129 export CXX
130 export INSPIRCD_STATIC
131 export INSPIRCD_VERBOSE
132 export LDLIBS
133 export PICLDFLAGS
134 export SOCKETENGINE
135 export SOURCEPATH
136
137 # Default target
138 TARGET = all
139
140 ifdef INSPIRCD_MODULE
141     HEADER = mod-header
142     FOOTER = mod-footer
143     TARGET = modules/$(INSPIRCD_MODULE:.so=).so
144 endif
145
146 ifdef INSPIRCD_TARGET
147     HEADER =
148     FOOTER = target
149     TARGET = $(INSPIRCD_TARGET)
150 endif
151
152 ifeq ($(DBGOK), 0)
153   HEADER = unknown-debug-level
154 endif
155
156 all: $(FOOTER)
157
158 target: $(HEADER)
159         $(MAKEENV) perl make/calcdep.pl
160         cd "$(BUILDPATH)"; $(MAKEENV) $(MAKE) -f real.mk $(TARGET)
161
162 debug:
163         @${MAKE} INSPIRCD_DEBUG=1 all
164
165 debug-header:
166         @echo "*************************************"
167         @echo "*    BUILDING WITH DEBUG SYMBOLS    *"
168         @echo "*                                   *"
169         @echo "*   This will take a *long* time.   *"
170         @echo "*  Please be aware that this build  *"
171         @echo "*  will consume a very large amount *"
172         @echo "*  of disk space (~350MB), and may  *"
173         @echo "*  run slower. Use the debug build  *"
174         @echo "*  for module development or if you *"
175         @echo "*    are experiencing problems.     *"
176         @echo "*                                   *"
177         @echo "*************************************"
178
179 mod-header:
180 ifdef INSPIRCD_STATIC
181         @echo 'Cannot build single modules in pure-static build'
182         @exit 1
183 endif
184         @echo 'Building single module:'
185
186 mod-footer: target
187         @echo 'To install, copy $(BUILDPATH)/$(TARGET) to $(MODPATH)'
188         @echo 'Or, run "make install"'
189
190 std-header:
191         @echo "*************************************"
192         @echo "*       BUILDING INSPIRCD           *"
193         @echo "*                                   *"
194         @echo "*   This will take a *long* time.   *"
195         @echo "*     Why not read our wiki at      *"
196         @echo "*     http://wiki.inspircd.org      *"
197         @echo "*  while you wait for make to run?  *"
198         @echo "*************************************"
199
200 finishmessage: target
201         @echo ""
202         @echo "*************************************"
203         @echo "*        BUILD COMPLETE!            *"
204         @echo "*                                   *"
205         @echo "*   To install InspIRCd, type:      *"
206         @echo "*         make install              *"
207         @echo "*************************************"
208
209 install: target
210         @if [ "$(INSTUID)" = 0 -o "$(INSTUID)" = root ]; then \
211                 echo ""; \
212                 echo "Error: You must specify a non-root UID for the server"; \
213                 echo ""; \
214                 echo "If you are making a package, please specify using ./configure --uid"; \
215                 echo "Otherwise, rerun using 'make INSTUID=irc install', where 'irc' is the user"; \
216                 echo "who will be running the ircd. You will also need to modify the start script."; \
217                 echo ""; \
218                 exit 1; \
219         fi
220         @-$(INSTALL) -d -o $(INSTUID) -m $(INSTMODE_DIR) $(BASE)
221         @-$(INSTALL) -d -o $(INSTUID) -m $(INSTMODE_DIR) $(DATPATH)
222         @-$(INSTALL) -d -o $(INSTUID) -m $(INSTMODE_DIR) $(LOGPATH)
223         @-$(INSTALL) -d -m $(INSTMODE_DIR) $(BINPATH)
224         @-$(INSTALL) -d -m $(INSTMODE_DIR) $(CONPATH)/examples/services
225         @-$(INSTALL) -d -m $(INSTMODE_DIR) $(MANPATH)
226         @-$(INSTALL) -d -m $(INSTMODE_DIR) $(MODPATH)
227         @-$(INSTALL) -d -m $(INSTMODE_DIR) $(SCRPATH)
228         [ "$(BUILDPATH)/bin/" -ef $(BINPATH) ] || $(INSTALL) -m $(INSTMODE_BIN) "$(BUILDPATH)/bin/inspircd" $(BINPATH)
229 ifndef INSPIRCD_STATIC
230         [ "$(BUILDPATH)/modules/" -ef $(MODPATH) ] || $(INSTALL) -m $(INSTMODE_LIB) "$(BUILDPATH)/modules/"*.so $(MODPATH)
231 endif
232         -$(INSTALL) -m $(INSTMODE_BIN) @CONFIGURE_DIRECTORY@/inspircd $(SCRPATH) 2>/dev/null
233         -$(INSTALL) -m $(INSTMODE_LIB) .gdbargs $(SCRPATH)/.gdbargs 2>/dev/null
234 ifeq ($(SYSTEM), darwin)
235         -$(INSTALL) -m $(INSTMODE_BIN) @CONFIGURE_DIRECTORY@/org.inspircd.plist $(SCRPATH) 2>/dev/null
236 endif
237 ifeq ($(SYSTEM), linux)
238         -$(INSTALL) -m $(INSTMODE_LIB) @CONFIGURE_DIRECTORY@/inspircd.service $(SCRPATH) 2>/dev/null
239 endif
240         -$(INSTALL) -m $(INSTMODE_LIB) @CONFIGURE_DIRECTORY@/inspircd.1 $(MANPATH) 2>/dev/null
241         -$(INSTALL) -m $(INSTMODE_LIB) @CONFIGURE_DIRECTORY@/inspircd-genssl.1 $(MANPATH) 2>/dev/null
242         -$(INSTALL) -m $(INSTMODE_BIN) tools/genssl $(BINPATH)/inspircd-genssl 2>/dev/null
243         -$(INSTALL) -m $(INSTMODE_LIB) docs/conf/*.example $(CONPATH)/examples
244         -$(INSTALL) -m $(INSTMODE_LIB) docs/conf/services/*.example $(CONPATH)/examples/services
245         -$(INSTALL) -m $(INSTMODE_LIB) *.pem $(CONPATH) 2>/dev/null
246         @echo ""
247         @echo "*************************************"
248         @echo "*        INSTALL COMPLETE!          *"
249         @echo "*************************************"
250         @echo 'Paths:'
251         @echo '  Base install:' $(BASE)
252         @echo '  Configuration:' $(CONPATH)
253         @echo '  Binaries:' $(BINPATH)
254         @echo '  Modules:' $(MODPATH)
255         @echo '  Data:' $(DATPATH)
256         @echo 'To start the ircd, run:' $(SCRPATH)/inspircd start
257         @echo 'Remember to create your config file:' $(CONPATH)/inspircd.conf
258         @echo 'Examples are available at:' $(CONPATH)/examples/
259
260 GNUmakefile: make/template/main.mk src/version.sh configure @CONFIGURE_CACHE_FILE@
261         ./configure --update
262
263 clean:
264         @echo Cleaning...
265         -rm -f "$(BUILDPATH)/bin/inspircd" "$(BUILDPATH)/include" "$(BUILDPATH)/real.mk"
266         -rm -rf "$(BUILDPATH)/obj" "$(BUILDPATH)/modules"
267         @-rmdir "$(BUILDPATH)/bin" 2>/dev/null
268         @-rmdir "$(BUILDPATH)" 2>/dev/null
269         @echo Completed.
270
271 deinstall:
272         -rm -f $(BINPATH)/inspircd
273         -rm -rf $(CONPATH)/examples
274         -rm -f $(MANPATH)/inspircd.1
275         -rm -f $(MANPATH)/inspircd-genssl.1
276         -rm -f $(MODPATH)/m_*.so
277         -rm -f $(MODPATH)/core_*.so
278         -rm -f $(SCRPATH)/.gdbargs
279         -rm -f $(SCRPATH)/inspircd.service
280         -rm -f $(SCRPATH)/org.inspircd.plist
281
282 configureclean:
283         rm -f .gdbargs
284         -rm -f Makefile
285         rm -f GNUmakefile
286         rm -f include/config.h
287         rm -rf @CONFIGURE_DIRECTORY@
288
289 distclean: clean configureclean
290         -rm -rf "$(SOURCEPATH)/run"
291         find "$(SOURCEPATH)/src/modules" -type l | xargs rm -f
292
293 help:
294         @echo 'InspIRCd Makefile'
295         @echo ''
296         @echo 'Use: ${MAKE} [flags] [targets]'
297         @echo ''
298         @echo 'Flags:'
299         @echo ' INSPIRCD_VERBOSE=1  Show the full command being executed instead of "BUILD: dns.cpp"'
300         @echo ' INSPIRCD_DEBUG=1    Enable debug build, for module development or crash tracing'
301         @echo ' INSPIRCD_DEBUG=2    Enable debug build with optimizations, for detailed backtraces'
302         @echo ' DESTDIR=            Specify a destination root directory (for tarball creation)'
303         @echo ' -j <N>              Run a parallel build using N jobs'
304         @echo ''
305         @echo 'Targets:'
306         @echo ' all       Complete build of InspIRCd, without installing (default)'
307         @echo ' install   Build and install InspIRCd to the directory chosen in ./configure'
308         @echo '           Currently installs to ${BASE}'
309         @echo ' debug     Compile a debug build. Equivalent to "make D=1 all"'
310         @echo ''
311         @echo ' INSPIRCD_MODULE=m_foo   Builds a single module (core_foo also works here)'
312         @echo ' INSPIRCD_TARGET=target  Builds a user-specified target, such as "inspircd" or "modules"'
313         @echo '                         Other targets are specified by their path in the build directory'
314         @echo '                         Multiple targets may be separated by a space'
315         @echo ''
316         @echo ' clean     Cleans object files produced by the compile'
317         @echo ' distclean Cleans all generated files (build, configure, run, etc)'
318         @echo ' deinstall Removes the files created by "make install"'
319         @echo
320
321 .NOTPARALLEL:
322
323 .PHONY: all target debug debug-header mod-header mod-footer std-header finishmessage install clean deinstall configureclean help