unrealircd- supernets unrealircd source & configuration |
git clone git://git.acid.vegas/unrealircd.git |
Log | Files | Refs | Archive | README | LICENSE |
Makefile.in (1851B)
1 #************************************************************************ 2 #* IRC - Internet Relay Chat, src/modules/usermodes/Makefile 3 #* Copyright (C) The UnrealIRCd team 4 #* 5 #* This program is free software; you can redistribute it and/or modify 6 #* it under the terms of the GNU General Public License as published by 7 #* the Free Software Foundation; either version 1, or (at your option) 8 #* any later version. 9 #* 10 #* This program is distributed in the hope that it will be useful, 11 #* but WITHOUT ANY WARRANTY; without even the implied warranty of 12 #* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 #* GNU General Public License for more details. 14 #* 15 #* You should have received a copy of the GNU General Public License 16 #* along with this program; if not, write to the Free Software 17 #* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 18 #*/ 19 20 CC = "==== DO NOT RUN MAKE FROM THIS DIRECTORY ====" 21 22 INCLUDES = ../../include/channel.h \ 23 ../../include/common.h ../../include/config.h ../../include/dbuf.h \ 24 ../../include/dynconf.h ../../include/fdlist.h ../../include/h.h \ 25 ../../include/ircsprintf.h \ 26 ../../include/license.h \ 27 ../../include/modules.h ../../include/modversion.h ../../include/msg.h \ 28 ../../include/numeric.h ../../include/dns.h \ 29 ../../include/resource.h ../../include/setup.h \ 30 ../../include/struct.h ../../include/sys.h \ 31 ../../include/types.h \ 32 ../../include/version.h ../../include/whowas.h 33 34 R_MODULES=\ 35 noctcp.so censor.so bot.so showwhois.so nokick.so servicebot.so \ 36 privacy.so regonlymsg.so secureonlymsg.so privdeaf.so wallops.so 37 38 MODULES=$(R_MODULES) 39 MODULEFLAGS=@MODULEFLAGS@ 40 RM=@RM@ 41 42 .SUFFIXES: 43 .SUFFIXES: .c .h .so 44 45 all: build 46 47 build: $(MODULES) 48 49 clean: 50 $(RM) -f *.o *.so *~ core 51 52 %.so: %.c $(INCLUDES) 53 $(CC) $(CFLAGS) $(MODULEFLAGS) -DDYNAMIC_LINKING \ 54 -o $@ $<