]> jfr.im git - irc/rqf/shadowircd.git/blob - extensions/Makefile.in
Added tag shadowircd-6.3.0 for changeset 031bedf7e340
[irc/rqf/shadowircd.git] / extensions / Makefile.in
1 #
2 # Makefile.in for ircd/contrib
3 #
4 # $Id: Makefile.in 3522 2007-07-06 07:48:28Z nenolod $
5 #
6 CC = @CC@
7 RM = @RM@
8 SED = @SED@
9 LEX = @LEX@
10 LEXLIB = @LEXLIB@
11 CFLAGS = @IRC_CFLAGS@ -DIRCD_PREFIX=\"@prefix@\"
12 PICFLAGS = @PICFLAGS@
13 MKDEP = @MKDEP@
14 INSTALL = @INSTALL@
15 INSTALL_PROGRAM = @INSTALL_PROGRAM@
16 INSTALL_DATA = @INSTALL_DATA@
17 INSTALL_SUID = @INSTALL_PROGRAM@ -o root -m 4755
18 SHELL = /bin/sh
19 AUTOMODULEDIR = @moduledir@/extensions
20
21 SSL_LIBS = @SSL_LIBS@
22 SSL_INCLUDES = @SSL_INCLUDES@
23
24 IRCDLIBS = @LIBS@ $(SSL_LIBS)
25
26 INCLUDES = -I. -I../include -I../libratbox/include $(SSL_INCLUDES)
27 CPPFLAGS = ${INCLUDES} @CPPFLAGS@
28
29 SRCS = \
30 chm_adminonly.c \
31 chm_operonly.c \
32 chm_operonly_compat.c \
33 chm_quietunreg_compat.c \
34 chm_sslonly.c \
35 chm_sslonly_compat.c \
36 createauthonly.c \
37 createoperonly.c \
38 extb_account.c \
39 extb_canjoin.c \
40 extb_channel.c \
41 extb_oper.c \
42 extb_server.c \
43 extb_ssl.c \
44 extb_realname.c \
45 extb_extgecos.c \
46 force_user_invis.c \
47 hurt.c \
48 ip_cloaking.c \
49 sno_farconnect.c \
50 sno_globalkline.c \
51 sno_globaloper.c \
52 sno_whois.c \
53 m_42.c \
54 m_adminwall.c \
55 m_cycle.c \
56 m_findforwards.c \
57 m_force.c \
58 m_identify.c \
59 m_mkpasswd.c \
60 m_oaccept.c \
61 m_ojoin.c \
62 m_olist.c \
63 m_okick.c \
64 m_omode.c \
65 m_opme.c \
66 m_sendbans.c \
67 m_webirc.c \
68 no_locops.c \
69 no_oper_invis.c \
70 m_roleplay.c \
71 spy_admin_notice.c \
72 spy_info_notice.c \
73 spy_links_notice.c \
74 spy_motd_notice.c \
75 spy_stats_notice.c \
76 spy_stats_p_notice.c \
77 spy_trace_notice.c \
78 example_module.c
79
80 OBJS = ${SRCS:.c=.so}
81
82 default: build
83 build: all
84 all: $(OBJS)
85
86 install: all
87 -@if test ! -d $(DESTDIR)$(AUTOMODULEDIR); then \
88 mkdir $(DESTDIR)$(AUTOMODULEDIR); \
89 fi
90 @echo "Installing modules into $(DESTDIR)$(AUTOMODULEDIR) .."
91 @for file in $(OBJS); do \
92 $(INSTALL_DATA) $$file $(DESTDIR)$(AUTOMODULEDIR); \
93 done
94
95 .SUFFIXES: .so
96
97 .c.so:
98 ${CC} ${PICFLAGS} ${CPPFLAGS} ${CFLAGS} $< -o $@
99
100 .PHONY: depend clean distclean
101 depend:
102 @${MKDEP} ${CPPFLAGS} ${SRCS} > .depend
103 @sed s/\\\.o/\\\.so/ < .depend > .depend.tmp
104 @sed -e '/^# DO NOT DELETE THIS LINE/,$$d' <Makefile >Makefile.depend
105 @echo '# DO NOT DELETE THIS LINE!!!' >>Makefile.depend
106 @echo '# make depend needs it.' >>Makefile.depend
107 @cat .depend.tmp >>Makefile.depend
108 @mv Makefile.depend Makefile
109 @rm -f .depend.tmp .depend
110
111 clean:
112 ${RM} -f *.so *~
113
114 distclean: clean
115 ${RM} -f Makefile
116