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