Mailing List Archive

r72 - trunk/varnish-cache/lib/libvcl
Author: phk
Date: 2006-03-27 11:01:56 +0200 (Mon, 27 Mar 2006)
New Revision: 72

Added:
trunk/varnish-cache/lib/libvcl/Makefile.am
Removed:
trunk/varnish-cache/lib/libvcl/Makefile
Log:
Put under control of auto* tools


Deleted: trunk/varnish-cache/lib/libvcl/Makefile
===================================================================
--- trunk/varnish-cache/lib/libvcl/Makefile 2006-03-27 09:01:06 UTC (rev 71)
+++ trunk/varnish-cache/lib/libvcl/Makefile 2006-03-27 09:01:56 UTC (rev 72)
@@ -1,23 +0,0 @@
-PROG = vpc
-
-SRCS += vcl_compile.c
-SRCS += vcl_fixed_token.c
-
-NO_MAN = yes
-
-WARNS ?= 5
-
-LDADD += -lsbuf
-
-.include <bsd.prog.mk>
-
-
-test: ${PROG}
- ./${PROG} ${.CURDIR}/sample.vcl
- cc -Wall -c _.c
-
-flint:
- flint flint.lnt -I/usr/include -I. ${SRCS}
-
-distclean: clean
-

Added: trunk/varnish-cache/lib/libvcl/Makefile.am
===================================================================
--- trunk/varnish-cache/lib/libvcl/Makefile.am 2006-03-27 09:01:06 UTC (rev 71)
+++ trunk/varnish-cache/lib/libvcl/Makefile.am 2006-03-27 09:01:56 UTC (rev 72)
@@ -0,0 +1,9 @@
+# $Id$
+
+INCLUDES = -I$(top_srcdir)/include
+
+lib_LTLIBRARIES = libvcl.la
+
+libvcl_la_SOURCES = \
+ vcl_compile.c \
+ vcl_fixed_token.c