unrealircd- supernets unrealircd source & configuration |
git clone git://git.acid.vegas/unrealircd.git |
Log | Files | Refs | Archive | README | LICENSE |
Makefile.in (1869B)
1 #************************************************************************ 2 #* IRC - Internet Relay Chat, src/modules/rpc/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 rpc.so stats.so user.so server.so channel.so server_ban.so \ 36 server_ban_exception.so name_ban.so spamfilter.so \ 37 log.so whowas.so 38 39 MODULES=$(R_MODULES) 40 MODULEFLAGS=@MODULEFLAGS@ 41 RM=@RM@ 42 43 .SUFFIXES: 44 .SUFFIXES: .c .h .so 45 46 all: build 47 48 build: $(MODULES) 49 50 clean: 51 $(RM) -f *.o *.so *~ core 52 53 %.so: %.c $(INCLUDES) 54 $(CC) $(CFLAGS) $(MODULEFLAGS) -DDYNAMIC_LINKING \ 55 -o $@ $<