]> jfr.im git - solanum.git/blame - modules/Makefile.in
target change: Propagate restricted addresses.
[solanum.git] / modules / Makefile.in
CommitLineData
212380e3
AC
1#
2# Makefile.in for ircd/modules
3#
607cf49f 4# $Id: Makefile.in 3372 2007-04-03 10:18:07Z nenolod $
212380e3
AC
5#
6CC = @CC@
7AR = @AR@
8RANLIB = @RANLIB@
9RM = @RM@
10SED = @SED@
11LEX = @LEX@
12LEXLIB = @LEXLIB@
13CFLAGS = @IRC_CFLAGS@ -DIRCD_PREFIX=\"@prefix@\"
14PICFLAGS = @PICFLAGS@
15MKDEP = @MKDEP@ -DIRCD_PREFIX=\"@prefix@\"
16INSTALL = @INSTALL@
17INSTALL_PROGRAM = @INSTALL_PROGRAM@
18INSTALL_DATA = @INSTALL_DATA@
19INSTALL_SUID = @INSTALL_PROGRAM@ -o root -m 4755
20SEDOBJ = @SEDOBJ@
21SHELL = /bin/sh
22MV = @MV@
23LD = @LD@
24
25SSL_LIBS = @SSL_LIBS@
26SSL_INCLUDES = @SSL_INCLUDES@
27
28IRCDLIBS = @LIBS@ $(SSL_LIBS)
29
30prefix = @prefix@
c74836dc
NPB
31exec_prefix = @exec_prefix@
32libdir = @libdir@
33pkglibdir = @pkglibdir@
212380e3 34moduledir = @moduledir@
c74836dc 35PACKAGE_TARNAME = @PACKAGE_TARNAME@
212380e3
AC
36# Change this later! -- adrian
37automoduledir = @moduledir@/autoload
38
f24a7dfb 39INCLUDES = -I../include -I../libratbox/include $(SSL_INCLUDES)
212380e3
AC
40CPPFLAGS = ${INCLUDES} @CPPFLAGS@
41
42CORE_SRCS = \
431a1a27 43 core/m_ban.c \
212380e3
AC
44 core/m_die.c \
45 core/m_error.c \
46 core/m_join.c \
47 core/m_kick.c \
48 core/m_kill.c \
49 core/m_message.c \
50 core/m_mode.c \
51 core/m_nick.c \
52 core/m_part.c \
53 core/m_quit.c \
54 core/m_server.c \
212380e3
AC
55 core/m_squit.c
56
57TSRCS = \
58 m_accept.c \
59 m_admin.c \
60 m_away.c \
61 m_cap.c \
62 m_capab.c \
8eda114a 63 m_certfp.c \
212380e3
AC
64 m_challenge.c \
65 m_chghost.c \
66 m_close.c \
67 m_cmessage.c \
68 m_connect.c \
69 m_dline.c \
70 m_encap.c \
71 m_etrace.c \
212380e3
AC
72 m_help.c \
73 m_info.c \
74 m_invite.c \
75 m_ison.c \
76 m_kline.c \
77 m_knock.c \
78 m_links.c \
607cf49f 79 m_list.c \
212380e3
AC
80 m_locops.c \
81 m_lusers.c \
82 m_map.c \
83 m_monitor.c \
84 m_motd.c \
85 m_names.c \
86 m_oper.c \
87 m_operspy.c \
88 m_pass.c \
89 m_ping.c \
90 m_pong.c \
91 m_post.c \
7b7e1640 92 m_privs.c \
212380e3
AC
93 m_rehash.c \
94 m_restart.c \
95 m_resv.c \
96 m_sasl.c \
97 m_scan.c \
98 m_services.c \
99 m_set.c \
100 m_signon.c \
101 m_snote.c \
102 m_stats.c \
103 m_svinfo.c \
104 m_tb.c \
105 m_testline.c \
106 m_testmask.c \
bc4dea69 107 m_tginfo.c \
212380e3
AC
108 m_time.c \
109 m_topic.c \
110 m_trace.c \
111 m_user.c \
112 m_userhost.c \
113 m_users.c \
114 m_version.c \
115 m_wallops.c \
116 m_who.c \
117 m_whois.c \
118 m_whowas.c \
119 m_unreject.c \
120 m_xline.c \
121 sno_routing.c
122
123SRCS = ${TSRCS}
124
125ALL_SRCS = $(CORE_SRCS) \
126 $(SRCS)
127
128SH_OBJS = ${SRCS:.c=.so}
129SH_CORE_OBJS = ${CORE_SRCS:.c=.so}
130
131HPUX_OBJS = ${SH_OBJS:.so=.sl}
132HPUX_CORE_OBJS = ${SH_CORE_OBJS:.so=.sl}
133
134S_OBJS = ${ALL_SRCS:.c=.o}
135
136DOLLAR = $$
137
138default: build
139build: all
140all: @MOD_TARGET@
141
142shared_modules: $(SH_CORE_OBJS) $(SH_OBJS)
143
144hpux_modules: $(HPUX_CORE_OBJS) $(HPUX_OBJS)
145
146hpux_shared: $(SH_CORE_OBJS) $(SH_OBJS)
147 ${MAKE} hpux_modules
148
149static_modules.c: static_modules.c.SH
150 /bin/sh ./static_modules.c.SH $(S_OBJS)
151
152libmodules.a: $(S_OBJS) static_modules.o
153 $(RM) -f $@
154 $(AR) cqv $@ $(S_OBJS) static_modules.o
155 $(RANLIB) $@
156
157
158install-mkdirs:
159 @echo "ircd: setting up modular directory structure"
212380e3
AC
160 -@if test -d $(DESTDIR)$(moduledir)-old; then \
161 rm -rf $(DESTDIR)$(moduledir)-old; \
162 fi
163 -@if test -d $(DESTDIR)$(moduledir); then \
164 echo "ircd: backing up modules"; \
165 mv $(DESTDIR)$(moduledir) $(DESTDIR)$(moduledir)-old; \
166 fi
167
168 @mkdir -p -m 755 $(DESTDIR)$(moduledir)
169 @mkdir -p -m 755 $(DESTDIR)$(automoduledir)
170
171install: install_@MOD_TARGET@
172
173install_libmodules.a: libmodules.a
174# Ye olde noop here.
175
176install_shared_modules: install-mkdirs
177 @echo "ircd: installing modules"
178 @for file in $(SH_CORE_OBJS); do \
179 $(INSTALL_DATA) $$file $(DESTDIR)$(moduledir); \
180 done
181 @for file in $(SH_OBJS); do \
182 $(INSTALL_DATA) $$file $(DESTDIR)$(automoduledir); \
183 done
184
185install_hpux_shared: install-mkdirs
186 @echo "ircd: installing modules"
187 @for file in $(HPUX_CORE_OBJS); do \
188 $(INSTALL_DATA) $$file $(DESTDIR)$(moduledir); \
189 done
190 @for file in $(HPUX_OBJS); do \
191 $(INSTALL_DATA) $$file $(DESTDIR)$(automoduledir); \
192 done
193
194.SUFFIXES: .sl .so .o
195
196.c.o:
197 ${CC} ${CPPFLAGS} ${CFLAGS} -DMODNAME=`basename $< .c`_mheader -c $< -o $@
198
199.c.so:
f02e3a26 200 ${CC} ${PICFLAGS} ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} $< -o $@
212380e3
AC
201
202.so.sl:
203 $(LD) -b $< -o $@
204
205.PHONY: depend clean distclean
206depend:
207 @$(RM) -f .depend
208 ${MKDEP} ${CPPFLAGS} ${ALL_SRCS} > .depend
209 @$(SED) -e '${SEDOBJ}' < .depend > .depend.tmp-1
baacec41 210 @$(SED) -e 's#^m_die\.#core/&#' -e 's#^m_error\.#core/&#' -e 's#^m_join\.#core/&#' -e 's#^m_kick\.#core/&#' -e 's#^m_kill\.#core/&#' -e 's#^m_message\.#core/&#' -e 's#^m_mode\.#core/&#' -e 's#^m_nick\.#core/&#' -e 's#^m_part\.#core/&#' -e 's#^m_quit\.#core/&#' -e 's#^m_server\.#core/&#' -e 's#^m_squit\.#core/&#' .depend.tmp-1 > .depend.tmp
212380e3
AC
211 @$(MV) -f .depend.tmp .depend
212 @$(RM) -f .depend.tmp-1
213
214clean:
215 ${RM} -f *.so *.sl *~ *.o *.a
216 ${RM} -f core/*.so core/*.sl core/*~ core/*.o
217
218lint:
219 lint -aacgprxhH ${CPPFLAGS} -DIRCD_PREFIX=\"@prefix@\" $(ALL_SRCS) >../lint.out
220
221distclean: clean
222 ${RM} -f Makefile
223
224include .depend