Commit 4d20e0e5 4d20e0e57fb16b8c16f316590a6a0e956c2e81fc by Wojciech Polak

Added SUBDIRS = . extensions

1 parent 5b38e1df
1 ## Process this file with GNU Automake to create Makefile.in 1 ## Process this file with GNU Automake to create Makefile.in
2 2
3 ## Copyright (C) 2002 Free Software Foundation, Inc. 3 ## Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
4 ## 4 ##
5 ## GNU Mailutils is free software; you can redistribute it and/or 5 ## GNU Mailutils is free software; you can redistribute it and/or
6 ## modify it under the terms of the GNU General Public License as 6 ## modify it under the terms of the GNU General Public License as
...@@ -17,11 +17,15 @@ ...@@ -17,11 +17,15 @@
17 ## Foundation, Inc. 17 ## Foundation, Inc.
18 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 19
20 INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/lib -I${top_builddir}/include/mailutils/gnu @INTLINCS@ 20 INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/lib\
21 -I${top_builddir}/include/mailutils/gnu @INTLINCS@
22
21 YLWRAP = $(SHELL) $(top_srcdir)/scripts/ylwrap 23 YLWRAP = $(SHELL) $(top_srcdir)/scripts/ylwrap
22 AM_YFLAGS = -dtv 24 AM_YFLAGS = -dtv
23 AM_CPPFLAGS = -DSIEVE_MODDIR=\"@SIEVE_MODDIR@\" 25 AM_CPPFLAGS = -DSIEVE_MODDIR=\"@SIEVE_MODDIR@\"
24 26
27 SUBDIRS = . extensions
28
25 lib_LTLIBRARIES = libsieve.la 29 lib_LTLIBRARIES = libsieve.la
26 30
27 libsieve_la_SOURCES = \ 31 libsieve_la_SOURCES = \
...@@ -39,11 +43,11 @@ libsieve_la_SOURCES = \ ...@@ -39,11 +43,11 @@ libsieve_la_SOURCES = \
39 sieve-lex.c\ 43 sieve-lex.c\
40 tests.c\ 44 tests.c\
41 util.c 45 util.c
42 libsieve_la_LIBADD=@LTDL_LIB@ 46 libsieve_la_LIBADD = @LTDL_LIB@
43 47
44 noinst_HEADERS = sieve.h 48 noinst_HEADERS = sieve.h
45 49
46 BUILT_SOURCES= \ 50 BUILT_SOURCES = \
47 sieve-gram.c sieve-gram.h \ 51 sieve-gram.c sieve-gram.h \
48 sieve-lex.c 52 sieve-lex.c
49 53
...@@ -61,4 +65,3 @@ sieve-gram.c sieve-gram.h: $(srcdir)/sieve.y ...@@ -61,4 +65,3 @@ sieve-gram.c sieve-gram.h: $(srcdir)/sieve.y
61 y.tab.c sieve-gram.c y.tab.h sieve-gram.h y.output y.output \ 65 y.tab.c sieve-gram.c y.tab.h sieve-gram.h y.output y.output \
62 -- -yy sieve_yy 66 -- -yy sieve_yy
63 67
64
......