Skip to content

Instantly share code, notes, and snippets.

Created December 19, 2012 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4339833 to your computer and use it in GitHub Desktop.
Save anonymous/4339833 to your computer and use it in GitHub Desktop.
#
# InspIRCd -- Internet Relay Chat Daemon
#
# Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
#
# This file is part of InspIRCd. InspIRCd is free software: you can
# redistribute it and/or modify it under the terms of the GNU General Public
# License as published by the Free Software Foundation, version 2.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# InspIRCd Main Makefile
#
# This file is automagically generated by configure, from
# make/template/main.mk. Any changes made to the generated
# files will go away whenever it is regenerated!
#
# Please do not edit unless you know what you're doing. This
# needs to work in both GNU and BSD make; it is mangled for
# them by configure.
#
CC = g++
SYSTEM = openbsd
BUILDPATH = /home/ircd/inspircd-2.0.10/build
SOCKETENGINE = socketengine_select
CXXFLAGS = -pipe -fPIC -DPIC
LDLIBS = -pthread -lstdc++
LDFLAGS =
CORELDFLAGS = -rdynamic -L. $(LDFLAGS)
PICLDFLAGS = -fPIC -shared -rdynamic $(LDFLAGS)
BASE = "$(DESTDIR)/home/ircd/inspircd-2.0.10/run"
CONPATH = "$(DESTDIR)/home/ircd/inspircd-2.0.10/run/conf"
MODPATH = "$(DESTDIR)/home/ircd/inspircd-2.0.10/run/modules"
DATPATH = "$(DESTDIR)/home/ircd/inspircd-2.0.10/run/data"
BINPATH = "$(DESTDIR)/home/ircd/inspircd-2.0.10/run/bin"
INSTUID = 1001
INSTMODE_DIR = 0755
INSTMODE_BIN = 0755
INSTMODE_LIB = 0644
.if $(CC) == icc
CXXFLAGS += -Wshadow
.else
CXXFLAGS += -pedantic -Woverloaded-virtual -Wshadow -Wformat=2 -Wmissing-format-attribute -Wall
.endif
.if $(SYSTEM) == linux
LDLIBS += -ldl -lrt
.endif
.if $(SYSTEM) == gnukfreebsd
LDLIBS += -ldl -lrt
.endif
.if $(SYSTEM) == gnu
LDLIBS += -ldl -lrt
.endif
.if $(SYSTEM) == solaris
LDLIBS += -lsocket -lnsl -lrt -lresolv
.endif
.if $(SYSTEM) == sunos
LDLIBS += -lsocket -lnsl -lrt -lresolv
.endif
.if $(SYSTEM) == darwin
CXXFLAGS += -DDARWIN -frtti
LDLIBS += -ldl
CORELDFLAGS = -dynamic -bind_at_load -L. $(LDFLAGS)
PICLDFLAGS = -fPIC -shared -twolevel_namespace -undefined dynamic_lookup $(LDFLAGS)
.endif
.if $(SYSTEM) == interix
CXXFLAGS += -D_ALL_SOURCE -I/usr/local/include
.endif
.if !defined(D)
D=0
.endif
DBGOK=0
.if $(D) == 0
CXXFLAGS += -O2
.if $(CC) == gcc
CXXFLAGS += -g1
.endif
HEADER = std-header
DBGOK=1
.endif
.if $(D) == 1
CXXFLAGS += -O0 -g3 -Werror
HEADER = debug-header
DBGOK=1
.endif
.if $(D) == 2
CXXFLAGS += -O2 -g3
HEADER = debug-header
DBGOK=1
.endif
FOOTER = finishmessage
CXXFLAGS += -Iinclude
SOURCEPATH != /bin/pwd
.if defined(V)
RUNCC = $(CC)
RUNLD = $(CC)
VERBOSE = -v
.else
MAKE += -s
RUNCC = perl $(SOURCEPATH)/make/run-cc.pl $(CC)
RUNLD = perl $(SOURCEPATH)/make/run-cc.pl $(CC)
.endif
.if defined(PURE_STATIC)
CXXFLAGS += -DPURE_STATIC
.endif
MAKEENV += RUNCC='${RUNCC}' RUNLD='${RUNLD}' CXXFLAGS='${CXXFLAGS}' LDLIBS='${LDLIBS}' PICLDFLAGS='${PICLDFLAGS}' VERBOSE='${VERBOSE}' SOCKETENGINE='${SOCKETENGINE}' CORELDFLAGS='${CORELDFLAGS}'
MAKEENV += SOURCEPATH='${SOURCEPATH}' BUILDPATH='${BUILDPATH}' PURE_STATIC='${PURE_STATIC}' SPLIT_CC='${SPLIT_CC}'
# Default target
TARGET = all
.if defined(M)
HEADER = mod-header
FOOTER = mod-footer
TARGET = modules/${M:S/.so$//}.so
.endif
.if defined(T)
HEADER =
FOOTER = target
TARGET = $(T)
.endif
.if $(DBGOK) == 0
HEADER = unknown-debug-level
.endif
all: $(FOOTER)
target: $(HEADER)
$(MAKEENV) perl make/calcdep.pl
cd $(BUILDPATH); $(MAKEENV) $(MAKE) -f real.mk $(TARGET)
debug:
@${MAKE} D=1 all
debug-header:
@echo "*************************************"
@echo "* BUILDING WITH DEBUG SYMBOLS *"
@echo "* *"
@echo "* This will take a *long* time. *"
@echo "* Please be aware that this build *"
@echo "* will consume a very large amount *"
@echo "* of disk space (~350MB), and may *"
@echo "* run slower. Use the debug build *"
@echo "* for module development or if you *"
@echo "* are experiencing problems. *"
@echo "* *"
@echo "*************************************"
mod-header:
.if defined(PURE_STATIC)
@echo 'Cannot build single modules in pure-static build'
@exit 1
.endif
@echo 'Building single module:'
mod-footer: target
@echo 'To install, copy $(BUILDPATH)/$(TARGET) to $(MODPATH)'
@echo 'Or, run "make install"'
std-header:
@echo "*************************************"
@echo "* BUILDING INSPIRCD *"
@echo "* *"
@echo "* This will take a *long* time. *"
@echo "* Why not read our wiki at *"
@echo "* http://wiki.inspircd.org *"
@echo "* while you wait for make to run? *"
@echo "*************************************"
finishmessage: target
@echo ""
@echo "*************************************"
@echo "* BUILD COMPLETE! *"
@echo "* *"
@echo "* To install InspIRCd, type: *"
@echo "* make install *"
@echo "*************************************"
install: target
@if [ "$(INSTUID)" = 0 -o "$(INSTUID)" = root ]; then \
echo ""; \
echo "Error: You must specify a non-root UID for the server"; \
echo ""; \
echo "If you are making a package, please specify using ./configure --uid"; \
echo "Otherwise, rerun using 'make INSTUID=irc install', where 'irc' is the user"; \
echo "who will be running the ircd. You will also need to modify the start script."; \
echo ""; \
exit 1; \
fi
@-install -d -o $(INSTUID) -m $(INSTMODE_DIR) $(BASE)
@-install -d -o $(INSTUID) -m $(INSTMODE_DIR) $(BASE)/data
@-install -d -o $(INSTUID) -m $(INSTMODE_DIR) $(BASE)/logs
@-install -d -m $(INSTMODE_DIR) $(BINPATH)
@-install -d -m $(INSTMODE_DIR) $(CONPATH)/examples/aliases
@-install -d -m $(INSTMODE_DIR) $(CONPATH)/examples/modules
@-install -d -m $(INSTMODE_DIR) $(MODPATH)
[ $(BUILDPATH)/bin/ -ef $(BINPATH) ] || install -m $(INSTMODE_BIN) $(BUILDPATH)/bin/inspircd $(BINPATH)
.if !defined(PURE_STATIC)
[ $(BUILDPATH)/modules/ -ef $(MODPATH) ] || install -m $(INSTMODE_LIB) $(BUILDPATH)/modules/*.so $(MODPATH)
.endif
-install -m $(INSTMODE_BIN) inspircd $(BASE) 2>/dev/null
-install -m $(INSTMODE_LIB) tools/gdbargs $(BASE)/.gdbargs 2>/dev/null
-install -m $(INSTMODE_LIB) docs/conf/*.example $(CONPATH)/examples
-install -m $(INSTMODE_LIB) docs/conf/aliases/*.example $(CONPATH)/examples/aliases
-install -m $(INSTMODE_LIB) docs/conf/modules/*.conf.* $(CONPATH)/examples/modules
@echo ""
@echo "*************************************"
@echo "* INSTALL COMPLETE! *"
@echo "*************************************"
@echo 'Paths:'
@echo ' Base install:' $(BASE)
@echo ' Configuration:' $(CONPATH)
@echo ' Binaries:' $(BINPATH)
@echo ' Modules:' $(MODPATH)
@echo ' Data:' $(DATPATH)
@echo 'To start the ircd, run:' $(BASE)/inspircd start
@echo 'Remember to create your config file:' $(CONPATH)/inspircd.conf
@echo 'Examples are available at:' $(CONPATH)/examples/
RCS_FILES = src/version.sh
GNUmakefile BSDmakefile: make/template/main.mk configure $(RCS_FILES)
./configure -update
.MAKEFILEDEPS: BSDmakefile
clean:
@echo Cleaning...
-rm -f $(BUILDPATH)/bin/inspircd $(BUILDPATH)/include $(BUILDPATH)/real.mk
-rm -rf $(BUILDPATH)/obj $(BUILDPATH)/modules
@-rmdir $(BUILDPATH)/bin 2>/dev/null
@-rmdir $(BUILDPATH) 2>/dev/null
@echo Completed.
deinstall:
-rm -f $(BINPATH)/inspircd
-rm -rf $(CONPATH)/examples
-rm -f $(MODPATH)/*.so
-rm -f $(BASE)/.gdbargs
-rm -f $(BASE)/org.inspircd.plist
squeakyclean: distclean
configureclean:
rm -f .config.cache
rm -f BSDmakefile
rm -f GNUmakefile
rm -f include/inspircd_config.h
rm -f include/inspircd_version.h
rm -f inspircd
-rm -f org.inspircd.plist
distclean: clean configureclean
rm -rf $(BASE)
find src/modules/ -type l | xargs rm -f
help:
@echo 'InspIRCd Makefile'
@echo ''
@echo 'Use: ${MAKE} [flags] [targets]'
@echo ''
@echo 'Flags:'
@echo ' V=1 Show the full command being executed instead of "BUILD: dns.cpp"'
@echo ' D=1 Enable debug build, for module development or crash tracing'
@echo ' D=2 Enable debug build with optimizations, for detailed backtraces'
@echo ' DESTDIR= Specify a destination root directory (for tarball creation)'
@echo ' -j <N> Run a parallel build using N jobs'
@echo ''
@echo 'Targets:'
@echo ' all Complete build of InspIRCd, without installing (default)'
@echo ' install Build and install InspIRCd to the directory chosen in ./configure'
@echo ' Currently installs to ${BASE}'
@echo ' debug Compile a debug build. Equivalent to "make D=1 all"'
@echo ''
@echo ' M=m_foo Builds a single module (cmd_foo also works here)'
@echo ' T=target Builds a user-specified target, such as "inspircd" or "modules"'
@echo ' Other targets are specified by their path in the build directory'
@echo ' Multiple targets may be separated by a space'
@echo ''
@echo ' clean Cleans object files produced by the compile'
@echo ' distclean Cleans all files produced by compile and ./configure'
@echo ' Note: this includes the Makefile'
@echo ' deinstall Removes the files created by "make install"'
@echo
.PHONY: all target debug debug-header mod-header mod-footer std-header finishmessage install clean deinstall squeakyclean configureclean help
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment