Commit 4518e810 4518e810aa0886c561cdaf0bffc9dbd264306c43 by Sergey Poznyakoff

Pruned for the new implementation.

1 parent 27058287
......@@ -2,86 +2,9 @@
# Copyright (C) 2000,2001,2002 Free Software Foundation
# See file COPYING in the distribution root directory for copying conditions.
AUTOMAKE_OPTIONS = ../lib/ansi2knr
INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/lib
SUBDIRS = testsuite
YLWRAP = $(SHELL) $(top_srcdir)/scripts/ylwrap
YFLAGS = -dt
BUILT_SOURCES= \
sieve-gram.c sieve-gram.h \
sieve-lex.c addr-lex.c \
addr.c addr.h
MOSTLYCLEANFILES=
CLEANFILES=
DISTCLEANFILES=
MAINTAINERCLEANFILES=$(BUILT_SOURCES)
EXTRA_DIST = \
$(BUILT_SOURCES) \
addr-lex.l addr.y gram-sieve.y sieve-gram.y sieve-lex.l
# SUBDIRS = testsuite
bin_PROGRAMS = sieve
SRC = \
addr-lex.c \
addr.c \
comparator.c \
imparse.c \
interp.c \
message.c \
parseaddr.c \
script.c \
sieve-lex.c \
sieve-gram.c \
sieve_err.c \
svcb.c \
svctx.c \
svfield.c \
svutil.c \
tree.c \
util.c
HDR = \
comparator.h \
imparse.h \
interp.h \
message.h \
parseaddr.h \
script.h \
sieve.h \
sieve_err.h \
sieve_interface.h \
svfield.h \
sv.h \
tree.h \
util.h
sieve_LDADD = ../mailbox/libmailbox.la ../lib/libmailutils.la
sieve_SOURCES = \
sieve.c \
${SRC} $(HDR)
addr-lex.c: $(srcdir)/addr-lex.l addr.h
$(YLWRAP) "$(LEX)" $(srcdir)/addr-lex.l lex.yy.c \
addr-lex.c -- -yy addr
addr.c addr.h: $(srcdir)/addr.y
$(YLWRAP) "$(YACC) $(YFLAGS)" $(srcdir)/addr.y \
y.tab.c addr.c y.tab.h addr.h \
-- -yy addr
sieve-lex.c: $(srcdir)/sieve-lex.l sieve-gram.h
$(YLWRAP) "$(LEX)" $(srcdir)/sieve-lex.l lex.yy.c sieve-lex.c
sieve-gram.c sieve-gram.h: $(srcdir)/sieve-gram.y
$(YLWRAP) "$(YACC) $(YFLAGS)" $(srcdir)/sieve-gram.y \
y.tab.c sieve-gram.c y.tab.h sieve-gram.h
comparator.o: sieve-gram.h
script.o: sieve-gram.h
tree.o: sieve-gram.h
empty: clean
rm -f $(BUILT_SOURCES)
sieve_SOURCES = sieve.c
sieve_LDADD = ../libsieve/libsieve.la ../mailbox/libmailbox.la ../lib/libmailutils.la
......