88 lines
1.7 KiB
Makefile
88 lines
1.7 KiB
Makefile
#
|
|
# Makefile.in for ircd/src/io
|
|
#
|
|
# $Id: Makefile.in 1269 2006-04-30 16:51:11Z nenolod $
|
|
#
|
|
CC = @CC@
|
|
INSTALL = @INSTALL@
|
|
INSTALL_BIN = @INSTALL_PROGRAM@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
INSTALL_SUID = @INSTALL_PROGRAM@ -o root -m 4755
|
|
RM = @RM@
|
|
LEX = @LEX@
|
|
LEXLIB = @LEXLIB@
|
|
CFLAGS = @IRC_CFLAGS@ -DIRCD_PREFIX=\"@prefix@\"
|
|
LDFLAGS = @LDFLAGS@
|
|
MKDEP = @MKDEP@ -DIRCD_PREFIX=\"@prefix@\"
|
|
MV = @MV@
|
|
RM = @RM@
|
|
YACC = @YACC@
|
|
AR = @AR@
|
|
RANLIB = @RANLIB@
|
|
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
libexecdir = @libexecdir@
|
|
sysconfdir = @sysconfdir@
|
|
localstatedir = @localstatedir@
|
|
# Change this later! -- adrian
|
|
moduledir = @prefix@/modules
|
|
automoduledir = @prefix@/modules/autoload
|
|
|
|
INCLUDES = -I../include -I../adns -I.
|
|
CPPFLAGS = ${INCLUDES} @CPPFLAGS@
|
|
|
|
default: all
|
|
|
|
BASE_SRCS = \
|
|
balloc.c \
|
|
commio.c \
|
|
event.c \
|
|
libcharybdis.c \
|
|
linebuf.c \
|
|
memory.c \
|
|
snprintf.c \
|
|
tools.c
|
|
|
|
SRCS = ${BASE_SRCS} @SELECT_TYPE@.c
|
|
|
|
OBJS = ${SRCS:.c=.o}
|
|
|
|
all: libcharybdis.a
|
|
|
|
build: all
|
|
|
|
libcharybdis.a: ${OBJS}
|
|
rm -f $@
|
|
${AR} cqv $@ ${OBJS}
|
|
${RANLIB} $@
|
|
|
|
# this is really the default rule for c files
|
|
.c.o:
|
|
${CC} ${CPPFLAGS} ${CFLAGS} -c $<
|
|
|
|
.PHONY: depend clean distclean
|
|
|
|
install:
|
|
|
|
depend:
|
|
@${MKDEP} ${CPPFLAGS} ${BASE_SRCS} ${EXTRA_SRCS} > .depend.tmp
|
|
@sed -e '/^# DO NOT DELETE THIS LINE/,$$d' <Makefile >Makefile.depend
|
|
@echo '# DO NOT DELETE THIS LINE!!!' >>Makefile.depend
|
|
@echo '# make depend needs it.' >>Makefile.depend
|
|
@cat .depend.tmp >>Makefile.depend
|
|
@mv Makefile.depend Makefile
|
|
@rm -f .depend.tmp
|
|
|
|
clean:
|
|
${RM} -f *.o *.exe *~ libcharybdis.a
|
|
|
|
lint:
|
|
|
|
distclean: clean
|
|
${RM} -f Makefile version.c.last
|
|
|
|
# DO NOT DELETE THIS LINE!!!
|
|
# make depend needs it.
|