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