unrealircd- supernets unrealircd source & configuration |
git clone git://git.acid.vegas/unrealircd.git |
Log | Files | Refs | Archive | README | LICENSE |
Makefile.in (2134B)
1 #************************************************************************ 2 #* IRC - Internet Relay Chat, src/modules/chanmodes/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 chanowner.so chanadmin.so chanop.so halfop.so voice.so \ 36 key.so limit.so inviteonly.so secret.so private.so \ 37 moderated.so noexternalmsgs.so topiclimit.so \ 38 nocolor.so stripcolor.so isregistered.so issecure.so permanent.so floodprot.so \ 39 noctcp.so link.so censor.so delayjoin.so noknock.so noinvite.so operonly.so \ 40 nonotice.so regonly.so nonickchange.so nokick.so regonlyspeak.so \ 41 secureonly.so history.so 42 43 MODULES=$(R_MODULES) 44 MODULEFLAGS=@MODULEFLAGS@ 45 RM=@RM@ 46 47 .SUFFIXES: 48 .SUFFIXES: .c .h .so 49 50 all: build 51 52 build: $(MODULES) 53 54 clean: 55 $(RM) -f *.o *.so *~ core 56 57 %.so: %.c $(INCLUDES) 58 $(CC) $(CFLAGS) $(MODULEFLAGS) -DDYNAMIC_LINKING \ 59 -o $@ $<