]> jfr.im git - solanum.git/blobdiff - modules/Makefile.in
m_info: Correct description of general::client_exit like in example confs.
[solanum.git] / modules / Makefile.in
index 73421d8f442285d15b6d7d973e125dfac38e6668..28590e74933ad9aa60aa0f1d1677a1719b21e137 100644 (file)
@@ -28,7 +28,11 @@ SSL_INCLUDES = @SSL_INCLUDES@
 IRCDLIBS        = @LIBS@ $(SSL_LIBS)
 
 prefix          = @prefix@
+exec_prefix     = @exec_prefix@
+libdir          = @libdir@
+pkglibdir       = @pkglibdir@
 moduledir       = @moduledir@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
 # Change this later! -- adrian
 automoduledir   = @moduledir@/autoload
 
@@ -36,6 +40,7 @@ INCLUDES      = -I../include -I../libratbox/include $(SSL_INCLUDES)
 CPPFLAGS       = ${INCLUDES} @CPPFLAGS@
 
 CORE_SRCS = \
+  core/m_ban.c \
   core/m_die.c \
   core/m_error.c \
   core/m_join.c \
@@ -50,11 +55,14 @@ CORE_SRCS = \
   core/m_squit.c
 
 TSRCS =                          \
+  chm_nocolour.c \
+  chm_noctcp.c \
   m_accept.c \
   m_admin.c \
   m_away.c \
   m_cap.c \
   m_capab.c \
+  m_certfp.c \
   m_challenge.c \
   m_chghost.c \
   m_close.c \
@@ -63,7 +71,6 @@ TSRCS =                          \
   m_dline.c \
   m_encap.c \
   m_etrace.c \
-  m_gline.c \
   m_help.c \
   m_info.c \
   m_invite.c \
@@ -94,11 +101,13 @@ TSRCS =                          \
   m_set.c \
   m_signon.c \
   m_snote.c \
+  m_starttls.c \
   m_stats.c \
   m_svinfo.c \
   m_tb.c \
   m_testline.c \
   m_testmask.c \
+  m_tginfo.c \
   m_time.c \
   m_topic.c \
   m_trace.c \
@@ -151,9 +160,6 @@ libmodules.a: $(S_OBJS) static_modules.o
 
 install-mkdirs:
        @echo "ircd: setting up modular directory structure"
-       -@if test ! -d $(DESTDIR)$(moduledir); then \
-                mkdir $(DESTDIR)$(moduledir); \
-        fi
        -@if test -d $(DESTDIR)$(moduledir)-old; then \
                rm -rf $(DESTDIR)$(moduledir)-old; \
        fi
@@ -194,7 +200,7 @@ install_hpux_shared: install-mkdirs
        ${CC} ${CPPFLAGS} ${CFLAGS} -DMODNAME=`basename $< .c`_mheader -c $< -o $@
 
 .c.so:
-       ${CC} ${PICFLAGS} ${CPPFLAGS} ${CFLAGS} $< -o $@
+       ${CC} ${PICFLAGS} ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} $< -o $@
 
 .so.sl:
        $(LD) -b $< -o $@
@@ -204,7 +210,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