Commit e8cb49a6 e8cb49a697c88c2935981916577fb69475f4357b by Sergey Poznyakoff

Added mu_argp.[ch]

1 parent ad56c3f6
...@@ -3,16 +3,17 @@ noinst_LIBRARIES = libmailutils.a ...@@ -3,16 +3,17 @@ noinst_LIBRARIES = libmailutils.a
3 3
4 SUBDIRS = posix 4 SUBDIRS = posix
5 5
6 INCLUDES = -I${top_srcdir}/include 6 INCLUDES = -I${top_srcdir}/include @ARGPINCS@
7 libmailutils_a_SOURCES = basename.c daemon.c getopt.c getopt1.c md5.c \ 7 libmailutils_a_SOURCES = basename.c daemon.c getopt.c getopt1.c md5.c \
8 mu_dbm.c getline.c xstrdup.c xmalloc.c argcv.c 8 mu_dbm.c getline.c xstrdup.c xmalloc.c argcv.c \
9 mu_argp.c
9 10
10 EXTRA_DIST = alloca.c fnmatch.c fgetpwent.c getpass.c malloc.c obstack.c \ 11 EXTRA_DIST = alloca.c fnmatch.c fgetpwent.c getpass.c malloc.c obstack.c \
11 realloc.c setenv.c snprintf.c strchrnul.c strndup.c strnlen.c strncasecmp.c \ 12 realloc.c setenv.c snprintf.c strchrnul.c strndup.c strnlen.c strncasecmp.c \
12 strcasecmp.c strtok_r.c strsignal.c xstrtol.c vasprintf.c 13 strcasecmp.c strtok_r.c strsignal.c xstrtol.c vasprintf.c
13 14
14 noinst_HEADERS = argcv.h error.h fnmatch.h getline.h getopt.h md5.h mu_dbm.h\ 15 noinst_HEADERS = argcv.h error.h fnmatch.h getline.h getopt.h md5.h mu_dbm.h\
15 regex.h snprintf.h xalloc.h xstrtol.h obstack.h 16 regex.h snprintf.h xalloc.h xstrtol.h obstack.h mu_argp.h
16 17
17 libmailutils_a_LIBADD = @LIBOBJS@ @ALLOCA@ 18 libmailutils_a_LIBADD = @LIBOBJS@ @ALLOCA@
18 19
......