From: phk Date: Mon, 27 Mar 2006 09:01:56 +0000 (+0000) Subject: Put under control of auto* tools X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02b9d544aeac406fa5d2a860705aed03caa56f8a;p=varnish Put under control of auto* tools git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@72 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/lib/libvcl/Makefile b/varnish-cache/lib/libvcl/Makefile deleted file mode 100644 index 4c664f76..00000000 --- a/varnish-cache/lib/libvcl/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -PROG = vpc - -SRCS += vcl_compile.c -SRCS += vcl_fixed_token.c - -NO_MAN = yes - -WARNS ?= 5 - -LDADD += -lsbuf - -.include - - -test: ${PROG} - ./${PROG} ${.CURDIR}/sample.vcl - cc -Wall -c _.c - -flint: - flint flint.lnt -I/usr/include -I. ${SRCS} - -distclean: clean - diff --git a/varnish-cache/lib/libvcl/Makefile.am b/varnish-cache/lib/libvcl/Makefile.am new file mode 100644 index 00000000..7ade95ae --- /dev/null +++ b/varnish-cache/lib/libvcl/Makefile.am @@ -0,0 +1,9 @@ +# $Id$ + +INCLUDES = -I$(top_srcdir)/include + +lib_LTLIBRARIES = libvcl.la + +libvcl_la_SOURCES = \ + vcl_compile.c \ + vcl_fixed_token.c