]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/Makefile.in
Revert all presence-related changes
[irc/rqf/shadowircd.git] / modules / Makefile.in
index dc9105e2112f4b29bfec1cb51a91a8a27f0f45d9..f1807cf586b2d5b6d7fac72036752e40b6e3b148 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Makefile.in for ircd/modules
 #
-# $Id: Makefile.in 946 2006-03-06 03:43:02Z nenolod $
+# $Id: Makefile.in 3372 2007-04-03 10:18:07Z nenolod $
 #
 CC             = @CC@
 AR             = @AR@
@@ -32,7 +32,7 @@ moduledir       = @moduledir@
 # Change this later! -- adrian
 automoduledir   = @moduledir@/autoload
 
-INCLUDES       = -I../include -I../libcharybdis -I../adns $(SSL_INCLUDES)
+INCLUDES       = -I../include -I../libratbox/include $(SSL_INCLUDES)
 CPPFLAGS       = ${INCLUDES} @CPPFLAGS@
 
 CORE_SRCS = \
@@ -47,7 +47,6 @@ CORE_SRCS = \
   core/m_part.c \
   core/m_quit.c \
   core/m_server.c \
-  core/m_sjoin.c \
   core/m_squit.c
 
 TSRCS =                          \
@@ -64,7 +63,6 @@ TSRCS =                          \
   m_dline.c \
   m_encap.c \
   m_etrace.c \
-  m_gline.c \
   m_help.c \
   m_info.c \
   m_invite.c \
@@ -72,7 +70,7 @@ TSRCS =                          \
   m_kline.c \
   m_knock.c \
   m_links.c \
-  m_list_safelist.c \
+  m_list.c \
   m_locops.c \
   m_lusers.c \
   m_map.c \
@@ -85,6 +83,7 @@ TSRCS =                          \
   m_ping.c \
   m_pong.c \
   m_post.c \
+  m_privs.c \
   m_rehash.c \
   m_restart.c \
   m_resv.c \
@@ -204,7 +203,7 @@ depend:
        @$(RM) -f .depend
        ${MKDEP} ${CPPFLAGS} ${ALL_SRCS} > .depend
        @$(SED) -e '${SEDOBJ}' < .depend > .depend.tmp-1
-       @$(SED) -e 's/^m_\(die\|kick\|kill\|message\|mode\|nick\|part\|quit\|server\|sjoin\|squit\)/core\/m_\1/' .depend.tmp-1 > .depend.tmp
+       @$(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
        @$(MV) -f .depend.tmp .depend
        @$(RM) -f .depend.tmp-1