unrealircd- supernets unrealircd source & configuration |
git clone git://git.acid.vegas/unrealircd.git |
Log | Files | Refs | Archive | README | LICENSE |
Makefile.in (1926B)
1 #************************************************************************ 2 #* IRC - Internet Relay Chat, src/modules/chanmodes/Makefile 3 #* Copyright (C) Carsten V. Munk 2001 & 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 join.so quiet.so nickchange.so inchannel.so realname.so \ 36 account.so operclass.so certfp.so textban.so msgbypass.so \ 37 timedban.so partmsg.so securitygroup.so \ 38 country.so flood.so 39 40 MODULES=$(R_MODULES) 41 MODULEFLAGS=@MODULEFLAGS@ 42 RM=@RM@ 43 44 .SUFFIXES: 45 .SUFFIXES: .c .h .so 46 47 all: build 48 49 build: $(MODULES) 50 51 clean: 52 $(RM) -f *.o *.so *~ core 53 54 %.so: %.c $(INCLUDES) 55 $(CC) $(CFLAGS) $(MODULEFLAGS) -DDYNAMIC_LINKING \ 56 -o $@ $<