Commit 7093cad9 7093cad98abf6eef4e738545b168e5bdf936b5e1 by Sergey Poznyakoff

Add argcv.c

1 parent 5d4deaf0
...@@ -21,6 +21,7 @@ SUBDIRS = config cpp scheme ...@@ -21,6 +21,7 @@ SUBDIRS = config cpp scheme
21 21
22 noinst_PROGRAMS = \ 22 noinst_PROGRAMS = \
23 addr\ 23 addr\
24 argcv\
24 base64\ 25 base64\
25 decode2047\ 26 decode2047\
26 encode2047\ 27 encode2047\
...@@ -51,6 +52,10 @@ INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/lib\ ...@@ -51,6 +52,10 @@ INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/lib\
51 52
52 AM_LDFLAGS = ../mailbox/libmailbox.la ../lib/libmailutils.la @MU_COMMON_LIBRARIES@ 53 AM_LDFLAGS = ../mailbox/libmailbox.la ../lib/libmailutils.la @MU_COMMON_LIBRARIES@
53 54
55 argcv_LDADD =\
56 ../mailbox/libmailbox.la\
57 ../lib/libmailutils.la
58
54 numaddr_la_SOURCES = numaddr.c 59 numaddr_la_SOURCES = numaddr.c
55 numaddr_la_LIBADD = ../libsieve/libsieve.la 60 numaddr_la_LIBADD = ../libsieve/libsieve.la
56 numaddr_la_LDFLAGS = -module -avoid-version -no-undefined 61 numaddr_la_LDFLAGS = -module -avoid-version -no-undefined
......