]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/template/main.mk
core_hostname_lookup: find answer record of the correct type instead of assuming...
[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 LOGPATH = "$(DESTDIR)@LOG_DIR@"
49 DATPATH = "$(DESTDIR)@DATA_DIR@"
50 BINPATH = "$(DESTDIR)@BINARY_DIR@"
51 INSTALL = install
52 INSTUID = @UID@
53 INSTMODE_DIR = 0750
54 INSTMODE_BIN = 0750
55 INSTMODE_LIB = 0640
56
57 @IFNEQ $(COMPILER) ICC
58   CORECXXFLAGS += -Woverloaded-virtual -Wshadow
59 @IFNEQ $(SYSTEM) openbsd
60     CORECXXFLAGS += -pedantic -Wformat=2 -Wmissing-format-attribute
61 @ENDIF
62 @ENDIF
63
64 @IFNEQ $(SYSTEM) darwin
65   LDLIBS += -pthread
66 @ENDIF
67
68 @IFEQ $(SYSTEM) linux
69   LDLIBS += -ldl -lrt
70 @ENDIF
71 @IFEQ $(SYSTEM) gnukfreebsd
72   LDLIBS += -ldl -lrt
73 @ENDIF
74 @IFEQ $(SYSTEM) gnu
75   LDLIBS += -ldl -lrt
76 @ENDIF
77 @IFEQ $(SYSTEM) solaris
78   LDLIBS += -lsocket -lnsl -lrt -lresolv
79   INSTALL = ginstall
80 @ENDIF
81 @IFEQ $(SYSTEM) darwin
82   LDLIBS += -ldl
83   CORELDFLAGS = -dynamic -bind_at_load -L. $(LDFLAGS)
84   PICLDFLAGS = -fPIC -shared -twolevel_namespace -undefined dynamic_lookup $(LDFLAGS)
85 @ENDIF
86
87 @IFNDEF INSPIRCD_DEBUG
88   INSPIRCD_DEBUG=0
89 @ENDIF
90
91 DBGOK=0
92 @IFEQ $(INSPIRCD_DEBUG) 0
93   CORECXXFLAGS += -fno-rtti -O2
94 @IFEQ $(COMPILER) GCC
95     CORECXXFLAGS += -g1
96 @ENDIF
97   HEADER = std-header
98   DBGOK=1
99 @ENDIF
100 @IFEQ $(INSPIRCD_DEBUG) 1
101   CORECXXFLAGS += -O0 -g3 -Werror -DINSPIRCD_ENABLE_RTTI
102   HEADER = debug-header
103   DBGOK=1
104 @ENDIF
105 @IFEQ $(INSPIRCD_DEBUG) 2
106   CORECXXFLAGS += -fno-rtti -O2 -g3
107   HEADER = debug-header
108   DBGOK=1
109 @ENDIF
110 FOOTER = finishmessage
111
112 @TARGET GNU_MAKE MAKEFLAGS += --no-print-directory
113
114 @TARGET GNU_MAKE SOURCEPATH = $(shell /bin/pwd)
115 @TARGET BSD_MAKE SOURCEPATH != /bin/pwd
116
117 @IFNDEF INSPIRCD_VERBOSE
118   @TARGET GNU_MAKE MAKEFLAGS += --silent
119   @TARGET BSD_MAKE MAKE += -s
120 @ENDIF
121
122 @IFDEF INSPIRCD_STATIC
123   CORECXXFLAGS += -DINSPIRCD_STATIC
124 @ENDIF
125
126 # Add the users CXXFLAGS to the base ones to allow them to override
127 # things like -Wfatal-errors if they wish to.
128 CORECXXFLAGS += $(CXXFLAGS)
129
130 @DO_EXPORT CXX CORECXXFLAGS LDLIBS PICLDFLAGS INSPIRCD_VERBOSE SOCKETENGINE CORELDFLAGS
131 @DO_EXPORT SOURCEPATH BUILDPATH INSPIRCD_STATIC
132
133 # Default target
134 TARGET = all
135
136 @IFDEF INSPIRCD_MODULE
137     HEADER = mod-header
138     FOOTER = mod-footer
139     @TARGET BSD_MAKE TARGET = modules/${INSPIRCD_MODULE:S/.so$//}.so
140     @TARGET GNU_MAKE TARGET = modules/$(INSPIRCD_MODULE:.so=).so
141 @ENDIF
142
143 @IFDEF INSPIRCD_TARGET
144     HEADER =
145     FOOTER = target
146     TARGET = $(INSPIRCD_TARGET)
147 @ENDIF
148
149 @IFEQ $(DBGOK) 0
150   HEADER = unknown-debug-level
151 @ENDIF
152
153 all: $(FOOTER)
154
155 target: $(HEADER)
156         $(MAKEENV) perl make/calcdep.pl
157         cd $(BUILDPATH); $(MAKEENV) $(MAKE) -f real.mk $(TARGET)
158
159 debug:
160         @${MAKE} INSPIRCD_DEBUG=1 all
161
162 debug-header:
163         @echo "*************************************"
164         @echo "*    BUILDING WITH DEBUG SYMBOLS    *"
165         @echo "*                                   *"
166         @echo "*   This will take a *long* time.   *"
167         @echo "*  Please be aware that this build  *"
168         @echo "*  will consume a very large amount *"
169         @echo "*  of disk space (~350MB), and may  *"
170         @echo "*  run slower. Use the debug build  *"
171         @echo "*  for module development or if you *"
172         @echo "*    are experiencing problems.     *"
173         @echo "*                                   *"
174         @echo "*************************************"
175
176 mod-header:
177 @IFDEF INSPIRCD_STATIC
178         @echo 'Cannot build single modules in pure-static build'
179         @exit 1
180 @ENDIF
181         @echo 'Building single module:'
182
183 mod-footer: target
184         @echo 'To install, copy $(BUILDPATH)/$(TARGET) to $(MODPATH)'
185         @echo 'Or, run "make install"'
186
187 std-header:
188         @echo "*************************************"
189         @echo "*       BUILDING INSPIRCD           *"
190         @echo "*                                   *"
191         @echo "*   This will take a *long* time.   *"
192         @echo "*     Why not read our wiki at      *"
193         @echo "*     http://wiki.inspircd.org      *"
194         @echo "*  while you wait for make to run?  *"
195         @echo "*************************************"
196
197 finishmessage: target
198         @echo ""
199         @echo "*************************************"
200         @echo "*        BUILD COMPLETE!            *"
201         @echo "*                                   *"
202         @echo "*   To install InspIRCd, type:      *"
203         @echo "*         make install              *"
204         @echo "*************************************"
205
206 install: target
207         @if [ "$(INSTUID)" = 0 -o "$(INSTUID)" = root ]; then \
208                 echo ""; \
209                 echo "Error: You must specify a non-root UID for the server"; \
210                 echo ""; \
211                 echo "If you are making a package, please specify using ./configure --uid"; \
212                 echo "Otherwise, rerun using 'make INSTUID=irc install', where 'irc' is the user"; \
213                 echo "who will be running the ircd. You will also need to modify the start script."; \
214                 echo ""; \
215                 exit 1; \
216         fi
217         @-$(INSTALL) -d -o $(INSTUID) -m $(INSTMODE_DIR) $(BASE)
218         @-$(INSTALL) -d -o $(INSTUID) -m $(INSTMODE_DIR) $(DATPATH)
219         @-$(INSTALL) -d -o $(INSTUID) -m $(INSTMODE_DIR) $(LOGPATH)
220         @-$(INSTALL) -d -m $(INSTMODE_DIR) $(BINPATH)
221         @-$(INSTALL) -d -m $(INSTMODE_DIR) $(CONPATH)/examples/aliases
222         @-$(INSTALL) -d -m $(INSTMODE_DIR) $(CONPATH)/examples/modules
223         @-$(INSTALL) -d -m $(INSTMODE_DIR) $(MANPATH)
224         @-$(INSTALL) -d -m $(INSTMODE_DIR) $(MODPATH)
225         [ $(BUILDPATH)/bin/ -ef $(BINPATH) ] || $(INSTALL) -m $(INSTMODE_BIN) $(BUILDPATH)/bin/inspircd $(BINPATH)
226 @IFNDEF INSPIRCD_STATIC
227         [ $(BUILDPATH)/modules/ -ef $(MODPATH) ] || $(INSTALL) -m $(INSTMODE_LIB) $(BUILDPATH)/modules/*.so $(MODPATH)
228 @ENDIF
229         -$(INSTALL) -m $(INSTMODE_BIN) @CONFIGURE_DIRECTORY@/inspircd $(BASE) 2>/dev/null
230         -$(INSTALL) -m $(INSTMODE_LIB) .gdbargs $(BASE)/.gdbargs 2>/dev/null
231 @IFEQ $(SYSTEM) darwin
232         -$(INSTALL) -m $(INSTMODE_BIN) @CONFIGURE_DIRECTORY@/org.inspircd.plist $(BASE) 2>/dev/null
233 @ENDIF
234 @IFEQ $(SYSTEM) linux
235         -$(INSTALL) -m $(INSTMODE_LIB) @CONFIGURE_DIRECTORY@/inspircd.service $(BASE) 2>/dev/null
236 @ENDIF
237         -$(INSTALL) -m $(INSTMODE_LIB) @CONFIGURE_DIRECTORY@/inspircd.1 $(MANPATH) 2>/dev/null
238         -$(INSTALL) -m $(INSTMODE_LIB) @CONFIGURE_DIRECTORY@/inspircd-genssl.1 $(MANPATH) 2>/dev/null
239         -$(INSTALL) -m $(INSTMODE_BIN) tools/genssl $(BINPATH)/inspircd-genssl 2>/dev/null
240         -$(INSTALL) -m $(INSTMODE_LIB) docs/conf/*.example $(CONPATH)/examples
241         -$(INSTALL) -m $(INSTMODE_LIB) *.pem $(CONPATH) 2>/dev/null
242         -$(INSTALL) -m $(INSTMODE_LIB) docs/conf/aliases/*.example $(CONPATH)/examples/aliases
243         -$(INSTALL) -m $(INSTMODE_LIB) docs/conf/modules/*.example $(CONPATH)/examples/modules
244         @echo ""
245         @echo "*************************************"
246         @echo "*        INSTALL COMPLETE!          *"
247         @echo "*************************************"
248         @echo 'Paths:'
249         @echo '  Base install:' $(BASE)
250         @echo '  Configuration:' $(CONPATH)
251         @echo '  Binaries:' $(BINPATH)
252         @echo '  Modules:' $(MODPATH)
253         @echo '  Data:' $(DATPATH)
254         @echo 'To start the ircd, run:' $(BASE)/inspircd start
255         @echo 'Remember to create your config file:' $(CONPATH)/inspircd.conf
256         @echo 'Examples are available at:' $(CONPATH)/examples/
257
258 GNUmakefile BSDmakefile: make/template/main.mk src/version.sh configure @CONFIGURE_CACHE_FILE@
259         ./configure --update
260 @TARGET BSD_MAKE .MAKEFILEDEPS: BSDmakefile
261
262 clean:
263         @echo Cleaning...
264         -rm -f $(BUILDPATH)/bin/inspircd $(BUILDPATH)/include $(BUILDPATH)/real.mk
265         -rm -rf $(BUILDPATH)/obj $(BUILDPATH)/modules
266         @-rmdir $(BUILDPATH)/bin 2>/dev/null
267         @-rmdir $(BUILDPATH) 2>/dev/null
268         @echo Completed.
269
270 deinstall:
271         -rm -f $(BINPATH)/inspircd
272         -rm -rf $(CONPATH)/examples
273         -rm -f $(MANPATH)/inspircd.1
274         -rm -f $(MANPATH)/inspircd-genssl.1
275         -rm -f $(MODPATH)/*.so
276         -rm -f $(BASE)/.gdbargs
277         -rm -f $(BASE)/inspircd.service
278         -rm -f $(BASE)/org.inspircd.plist
279
280 configureclean:
281         rm -f .gdbargs
282         rm -f BSDmakefile
283         rm -f GNUmakefile
284         rm -f include/config.h
285         rm -rf @CONFIGURE_DIRECTORY@
286
287 distclean: clean configureclean
288         -rm -rf $(SOURCEPATH)/run
289         find $(SOURCEPATH)/src/modules -type l | xargs rm -f
290
291 help:
292         @echo 'InspIRCd Makefile'
293         @echo ''
294         @echo 'Use: ${MAKE} [flags] [targets]'
295         @echo ''
296         @echo 'Flags:'
297         @echo ' INSPIRCD_VERBOSE=1  Show the full command being executed instead of "BUILD: dns.cpp"'
298         @echo ' INSPIRCD_DEBUG=1    Enable debug build, for module development or crash tracing'
299         @echo ' INSPIRCD_DEBUG=2    Enable debug build with optimizations, for detailed backtraces'
300         @echo ' DESTDIR=            Specify a destination root directory (for tarball creation)'
301         @echo ' -j <N>              Run a parallel build using N jobs'
302         @echo ''
303         @echo 'Targets:'
304         @echo ' all       Complete build of InspIRCd, without installing (default)'
305         @echo ' install   Build and install InspIRCd to the directory chosen in ./configure'
306         @echo '           Currently installs to ${BASE}'
307         @echo ' debug     Compile a debug build. Equivalent to "make D=1 all"'
308         @echo ''
309         @echo ' INSPIRCD_MODULE=m_foo   Builds a single module (core_foo also works here)'
310         @echo ' INSPIRCD_TARGET=target  Builds a user-specified target, such as "inspircd" or "modules"'
311         @echo '                         Other targets are specified by their path in the build directory'
312         @echo '                         Multiple targets may be separated by a space'
313         @echo ''
314         @echo ' clean     Cleans object files produced by the compile'
315         @echo ' distclean Cleans all generated files (build, configure, run, etc)'
316         @echo ' deinstall Removes the files created by "make install"'
317         @echo
318
319 .NOTPARALLEL:
320
321 .PHONY: all target debug debug-header mod-header mod-footer std-header finishmessage install clean deinstall configureclean help