#
# Makefile for totd
#
# <$Id: Makefile.in,v 3.43 2005/01/31 11:55:14 dillema Exp $>
#
# These use the standard autoconf variables, which by default are
# rooted in @prefix@
prefix=@prefix@
exec_prefix=@exec_prefix@
INSTALLDIR = @sbindir@
INSTALLLIB = @libdir@
INSTALLMAN = @mandir@
TOT_CONFIG_FILE=@sysconfdir@/totd.conf
INSTALL = /usr/bin/install
CFLAGS = @CFLAGS@ @DEFS@ -Wall -DTOTCONF=\"$(TOT_CONFIG_FILE)\" @OPTFLAGS@ $(INCLUDEPATH)
# When debugging is enabled by --enable-malloc-debug flag to the configure
# script, the @DBMALLOC@ substitution will contain the empty string, thus
# enabling the dbmalloc lines. When the flag is not specified, the
# @DBMALLOC@ will contain the string "#", thus commenting out the lines
# and disabling dbmalloc.
@DBMALLOC@LIBDEBUG = -ldbmalloc
@DBMALLOC@DEBUGINCLUDE= -I/usr/local/debug_include
@DBMALLOC@CFLAGS+= -DDBMALLOC
@DOSWILL@LIBSWILL= -L./ -lswill
@DOSWILL@SWILLINCLUDE= -I./SWILL-0.1/Include
@DOSWILL@CFLAGS+= -DSWILL
# Similar as above for TCP debugging
@DBTCP@CFLAGS+= -DDBTCP
LDFLAGS = @LDFLAGS@
LDADD = @LIBS@ $(LIBDEBUG) $(LIBSWILL)
CFLAGS += @EXTINCLUDE@ $(DEBUGINCLUDE) $(SWILLINCLUDE)
PROG = totd
MAN = totd.8
SRCS = request.c response.c context.c ne_mesg.c conv_trick.c ev_tcp.c forward.c queue.c \
read_config.c tcp_request.c tcp_response.c ev_dup.c list.c res_record.c udp_request.c \
ev_timeout.c udp_response.c ev_signal.c ev_udp_in.c ne_io.c conv_scoped.c conv_stf.c \
strlcpy.c strlcat.c daemon.c inet_aton.c html.c
INCLUDES = config.h macros.h protos.h totd.h tot_constants.h tot_types.h
@DOSWILL@INCLUDES+= ./SWILL-0.1/Include/swill.h
OBJS+=$(SRCS:.c=.o)
SRCS+= ${PROG}.c
all: $(PROG)
${PROG}: ${OBJS} ${INCLUDES} @DOSWILL@ libswill.a
${CC} ${LDFLAGS} -o ${PROG} ${OBJS} ${LDADD}
libswill.a:
-(cd SWILL-0.1/ && ./configure --prefix=@prefix@ @SWILLCONF@ && make static)
-cp SWILL-0.1/Source/SWILL/libswill.a ./
-ranlib libswill.a
install: $(PROG)
$(INSTALL) -c -s -m 0555 -o bin -g bin $(PROG) $(INSTALLDIR)
$(INSTALL) -c -m 0444 -o root -g wheel $(MAN) $(INSTALLMAN)/man8
lint:
lint ${SRCS}
depend:
@(mkdep ${SRCS} || makedepend ${SRCS}) 2>/dev/null
clean:
-rm -f core *.core *~ $(PROG) $(OBJS) @DOSWILL@ libswill.a
@DOSWILL@ -(cd SWILL-0.1; make clean)
distclean: clean
rm -f config.cache config.status config.log .depend config.h
cp Makefile.dummy Makefile
cvs: distclean
cvs2cl -W 10000 -r -t -b -P
cvs commit -m "End of my working day"
syntax highlighted by Code2HTML, v. 0.9.1