ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/vendor/ircservices-5.1.24/modules/chanserv/Makefile
Revision: 3389
Committed: Fri Apr 25 14:12:15 2014 UTC (11 years, 4 months ago) by michael
File size: 1015 byte(s)
Log Message:
- Imported ircservices-5.1.24

File Contents

# Content
1 # Makefile for ChanServ modules.
2 #
3 # IRC Services is copyright (c) 1996-2009 Andrew Church.
4 # E-mail: <achurch@achurch.org>
5 # Parts written by Andrew Kempe and others.
6 # This program is free but copyrighted software; see the file GPL.txt for
7 # details.
8
9 ###########################################################################
10
11 include ../../Makefile.inc
12
13 MODULES = main.so access-levels.so access-xop.so
14 OBJECTS-main.so = access.o check.o set.o util.o
15
16 INCLUDES = chanserv.h cs-local.h $(TOPDIR)/language.h $(TOPDIR)/encrypt.h \
17 $(TOPDIR)/modules/nickserv/nickserv.h \
18 $(TOPDIR)/modules/operserv/operserv.h
19
20 INCLUDES-access.o = access.h
21 INCLUDES-check.o = $(TOPDIR)/timeout.h
22 INCLUDES-main.o = $(TOPDIR)/commands.h $(TOPDIR)/databases.h \
23 $(TOPDIR)/encrypt.h
24 INCLUDES-set.o = $(TOPDIR)/encrypt.h
25
26 INCLUDES-access-levels.o = $(TOPDIR)/commands.h access.h
27 INCLUDES-access-xop.o = $(TOPDIR)/commands.h
28
29 include ../Makerules
30
31 ###########################################################################