"Fossies" - the Fresh Open Source Software Archive

Member "tlswrap-1.04/Makefile.in" (25 Nov 2006, 686 Bytes) of package /linux/privat/old/tlswrap-1.04.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 srcdir	= @srcdir@
    2 VPATH	= @srcdir@
    3 SHELL	= /bin/sh
    4 
    5 prefix	= @prefix@
    6 exec_prefix = @exec_prefix@
    7 bindir	= @bindir@
    8 mandir	= @mandir@
    9 sbindir	= @sbindir@
   10 ssldir=@ssldir@
   11 openssl=$(ssldir)/bin/openssl
   12 
   13 mandircat5 = ${mandir}/cat5
   14 mandircat8 = ${mandir}/cat8
   15 
   16 CC	= @CC@
   17 CFLAGS	= -I${srcdir} @INCLUDES@ @CFLAGS@
   18 LIBS	= @LIBS@
   19 LDFLAGS	= @LDFLAGS@
   20 
   21 INSTALL	= @INSTALL@
   22 
   23 PROG	= tlswrap
   24 OBJS	= config.o misc.o network.o parse.o tls.o tlswrap.o
   25 
   26 all:	${PROG}
   27 
   28 install: all
   29 	-mkdir -p ${bindir}
   30 	${INSTALL} -m 555 ${PROG} ${bindir}
   31 
   32 ${PROG}: ${OBJS}
   33 	${CC} ${CFLAGS} ${LDFLAGS} -o ${PROG} ${OBJS} ${LIBS}
   34 
   35 clean:
   36 	rm -f core ${PROG} ${OBJS}
   37 
   38 distclean: clean
   39 	rm -f Makefile
   40 	rm -f config.cache