]> jfr.im git - solanum.git/blob - modules/Makefile.in
target change: Propagate restricted addresses.
[solanum.git] / modules / Makefile.in
1 #
2 # Makefile.in for ircd/modules
3 #
4 # $Id: Makefile.in 3372 2007-04-03 10:18:07Z nenolod $
5 #
6 CC = @CC@
7 AR = @AR@
8 RANLIB = @RANLIB@
9 RM = @RM@
10 SED = @SED@
11 LEX = @LEX@
12 LEXLIB = @LEXLIB@
13 CFLAGS = @IRC_CFLAGS@ -DIRCD_PREFIX=\"@prefix@\"
14 PICFLAGS = @PICFLAGS@
15 MKDEP = @MKDEP@ -DIRCD_PREFIX=\"@prefix@\"
16 INSTALL = @INSTALL@
17 INSTALL_PROGRAM = @INSTALL_PROGRAM@
18 INSTALL_DATA = @INSTALL_DATA@
19 INSTALL_SUID = @INSTALL_PROGRAM@ -o root -m 4755
20 SEDOBJ = @SEDOBJ@
21 SHELL = /bin/sh
22 MV = @MV@
23 LD = @LD@
24
25 SSL_LIBS = @SSL_LIBS@
26 SSL_INCLUDES = @SSL_INCLUDES@
27
28 IRCDLIBS = @LIBS@ $(SSL_LIBS)
29
30 prefix = @prefix@
31 exec_prefix = @exec_prefix@
32 libdir = @libdir@
33 pkglibdir = @pkglibdir@
34 moduledir = @moduledir@
35 PACKAGE_TARNAME = @PACKAGE_TARNAME@
36 # Change this later! -- adrian
37 automoduledir = @moduledir@/autoload
38
39 INCLUDES = -I../include -I../libratbox/include $(SSL_INCLUDES)
40 CPPFLAGS = ${INCLUDES} @CPPFLAGS@
41
42 CORE_SRCS = \
43 core/m_ban.c \
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 \
55 core/m_squit.c
56
57 TSRCS = \
58 m_accept.c \
59 m_admin.c \
60 m_away.c \
61 m_cap.c \
62 m_capab.c \
63 m_certfp.c \
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 \
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 \
79 m_list.c \
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 \
92 m_privs.c \
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 \
107 m_tginfo.c \
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
123 SRCS = ${TSRCS}
124
125 ALL_SRCS = $(CORE_SRCS) \
126 $(SRCS)
127
128 SH_OBJS = ${SRCS:.c=.so}
129 SH_CORE_OBJS = ${CORE_SRCS:.c=.so}
130
131 HPUX_OBJS = ${SH_OBJS:.so=.sl}
132 HPUX_CORE_OBJS = ${SH_CORE_OBJS:.so=.sl}
133
134 S_OBJS = ${ALL_SRCS:.c=.o}
135
136 DOLLAR = $$
137
138 default: build
139 build: all
140 all: @MOD_TARGET@
141
142 shared_modules: $(SH_CORE_OBJS) $(SH_OBJS)
143
144 hpux_modules: $(HPUX_CORE_OBJS) $(HPUX_OBJS)
145
146 hpux_shared: $(SH_CORE_OBJS) $(SH_OBJS)
147 ${MAKE} hpux_modules
148
149 static_modules.c: static_modules.c.SH
150 /bin/sh ./static_modules.c.SH $(S_OBJS)
151
152 libmodules.a: $(S_OBJS) static_modules.o
153 $(RM) -f $@
154 $(AR) cqv $@ $(S_OBJS) static_modules.o
155 $(RANLIB) $@
156
157
158 install-mkdirs:
159 @echo "ircd: setting up modular directory structure"
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
171 install: install_@MOD_TARGET@
172
173 install_libmodules.a: libmodules.a
174 # Ye olde noop here.
175
176 install_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
185 install_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:
200 ${CC} ${PICFLAGS} ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} $< -o $@
201
202 .so.sl:
203 $(LD) -b $< -o $@
204
205 .PHONY: depend clean distclean
206 depend:
207 @$(RM) -f .depend
208 ${MKDEP} ${CPPFLAGS} ${ALL_SRCS} > .depend
209 @$(SED) -e '${SEDOBJ}' < .depend > .depend.tmp-1
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
211 @$(MV) -f .depend.tmp .depend
212 @$(RM) -f .depend.tmp-1
213
214 clean:
215 ${RM} -f *.so *.sl *~ *.o *.a
216 ${RM} -f core/*.so core/*.sl core/*~ core/*.o
217
218 lint:
219 lint -aacgprxhH ${CPPFLAGS} -DIRCD_PREFIX=\"@prefix@\" $(ALL_SRCS) >../lint.out
220
221 distclean: clean
222 ${RM} -f Makefile
223
224 include .depend