# InspIRCd Main Makefile # # (C) InspIRCd Development Team, 2002-2009 # This file is automagically generated by configure, from # .Makefile.inc. Any changes make will go away! # Please do not edit unless you know what you're doing. # @GNU_ONLY MAKESTYLE = gnu @GNU_ONLY COMPILE_ROOT ?= $(shell pwd) @BSD_ONLY MAKESTYLE = bsd @BSD_ONLY COMPILE_ROOT != pwd CC = @CC@ SYSTEM = @SYSTEM@ SOCKETENGINE = @SOCKETENGINE@ NICEFLAGS = -pipe -fPIC LDLIBS = -pthread -lstdc++ SHARED = -shared -rdynamic CORE_FLAGS = -rdynamic -L. PICLDFLAGS = -fPIC -DPIC -shared -rdynamic BASE = "@BASE_DIR@" CONPATH = "@CONFIG_DIR@" MODPATH = "@MODULE_DIR@" BINPATH = "@BINARY_DIR@" LAUNCHDPATH = "/System/Library/LaunchDaemons" LIBPATH = "@LIBRARY_DIR@" INSTMODE = 0755 @IFEQ $(CC) icc NICEFLAGS += -Wshadow FLAGS = $(NICEFLAGS) @ELSE NICEFLAGS += -Woverloaded-virtual -Wshadow -Wformat=2 -Wmissing-format-attribute -Wall FLAGS = $(NICEFLAGS) -pedantic @ENDIF @IFEQ $(SYSTEM) linux LDLIBS += -ldl @ELSIFEQ $(SYSTEM) solaris LDLIBS += -lsocket -lnsl -lrt -lresolv @ELSIFEQ $(SYSTEM) sunos LDLIBS += -lsocket -lnsl -lrt -lresolv @ELSIFEQ $(SYSTEM) darwin NICEFLAGS += -DDARWIN -frtti LDLIBS += -ldl SHARED = -bundle -twolevel_namespace -undefined dynamic_lookup CORE_FLAGS = -dynamic -bind_at_load -L. @ENDIF @IFDEF D NICEFLAGS += -g3 HEADER = debug-header @ELSE NICEFLAGS += -g1 HEADER = std-header @ENDIF NICEFLAGS += -I$(COMPILE_ROOT)/include @GNU_ONLY MAKEFLAGS += --no-print-directory @IFDEF V RUNCC = $(CC) VERBOSE = -v @ELSE @GNU_ONLY MAKEFLAGS += --silent @BSD_ONLY MAKE += -s RUNCC = $(COMPILE_ROOT)/make/run-cc.pl $(CC) @ENDIF @DO_EXPORT RUNCC FLAGS NICEFLAGS CC LDLIBS PICLDFLAGS VERBOSE SOCKETENGINE CORE_FLAGS @DO_EXPORT BASE CONPATH MODPATH BINPATH LIBPATH # Default target @IFDEF M _all: module @BSD_ONLY MODNAME = ${M:S/.so$//} @GNU_ONLY MODNAME = $(M:.so=) @ENDIF @IFDEF F _all: single @ENDIF all: finishmessage alldep: @cd src; ../make/calcdep.pl `perl -e 'print join " ", <*.cpp>, , , , '` socketengines/$(SOCKETENGINE).cpp threadengines/threadengine_pthread.cpp allreal: $(HEADER) alldep @$(MAKEENV) $(MAKE) -C src -f ../make/$(MAKESTYLE)-real.mk all module: alldep $(MAKEENV) $(MAKE) -C src -f ../make/$(MAKESTYLE)-real.mk modules/$(MODNAME).so single: alldep $(MAKEENV) $(MAKE) -C src -f ../make/$(MAKESTYLE)-real.mk $(F) 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 (150MB+), and can *" @echo "* run slower. Use the debug build *" @echo "* for module development or if you *" @echo "* are experiencing problems. *" @echo "* *" @echo "*************************************" 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: allreal @echo "" @echo "*************************************" @echo "* BUILD COMPLETE! *" @echo "* *" @echo "* To install InspIRCd, type: *" @echo "* make install *" @echo "*************************************" install: allreal@EXTRA_DIR@ @-install -d -m $(INSTMODE) $(BASE) @-install -d -m $(INSTMODE) $(LIBPATH) @-install -d -m $(INSTMODE) $(BINPATH) @-install -d -m $(INSTMODE) $(CONPATH) @-install -d -m $(INSTMODE) $(MODPATH) -install -m $(INSTMODE) src/commands/*.so $(LIBPATH) -install -m $(INSTMODE) src/modules/*.so $(MODPATH) -install -m $(INSTMODE) @STARTSCRIPT@ $(@DESTINATION@) 2>/dev/null -install -m $(INSTMODE) src/inspircd $(BINPATH) @$(MAKEENV) make/install-extras.pl install @echo "" @echo "*************************************" @echo "* INSTALL COMPLETE! *" @echo "* *" @echo "* It is safe to ignore any messages *" @echo "* related to copying of conf files. *" @echo "* *" @echo "* REMEMBER TO EDIT YOUR CONFIG FILE *" @echo "*************************************" clean: @echo Cleaning... @rm -f src/inspircd src/modes/modeclasses.a @rm -f src/*.so src/modules/*.so src/commands/*.so src/modules/*/*.so @rm -f src/*.o src/*/*.o src/modules/*/*.o @rm -f src/.*.d src/*/.*.d src/modules/*/.*.d @echo Completed. modclean: rm -f src/modules/*.so rm -f src/modules/*.o rm -f src/modules/*/*.so rm -f src/modules/*/*.o deinstall: -rm $(BINPATH)/inspircd -rm $(LIBPATH)/*.so -rm $(MODPATH)/*.so @make/install-extras.pl deinstall squeakyclean: distclean launchd_dir: @-install -d -m $(INSTMODE) ${LAUNCHDPATH} configureclean: rm -f .config.cache rm -f src/modules/Makefile rm -f src/commands/Makefile rm -f src/Makefile -rm -f Makefile rm -f BSDmakefile rm -f GNUmakefile rm -f include/inspircd_config.h rm -f include/inspircd_se_config.h distclean: modclean clean configureclean 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 ' -j Run a parallel build using N jobs' @echo '' @echo 'User targets:' @echo ' all Complete build of InspIRCd, without installing' @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 ' module Builds a single module, which is specified by "M=m_modname"' @echo ' The command "make M=m_modname" is a shortcut for this target' @echo ' single Builds a single target, which is specified by "F=filename"' @echo ' The command "make F=filename" is a shortcut for this target' @echo ' Paths are relative to the src/ directory' @echo '' @echo ' clean Cleans object files produced by the compile' @echo ' distclean Cleans all files produced by compile and ./configure' @echo ' deinstall Removes the files created by "make install"' @echo .PHONY: all help debug debug-header std-header ircd mods finishmessage install module single clean modclean deinstall squeakyclean launchd_dir configureclean