summaryrefslogtreecommitdiff
path: root/misc/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'misc/Makefile.in')
-rw-r--r--misc/Makefile.in33
1 files changed, 20 insertions, 13 deletions
diff --git a/misc/Makefile.in b/misc/Makefile.in
index e9a1828be..042bd39e0 100644
--- a/misc/Makefile.in
+++ b/misc/Makefile.in
@@ -116,14 +116,19 @@ varprefix = @varprefix@
AUTOMAKE_OPTIONS = 1.3 foreign
EXTRA_DIST = \
- alloca.c fakefork.c fnmatch.c getcwd.c \
- getmntent.c getwd.c glob.c inet_aton.c \
- memcmp.c mktime.c myrealloc.c putenv.c \
- realpath.c strdup.c strerror.c strftime.c \
- strspn.c strstr.c strtol.c strtoul.c
+ alloca.c error.c fakefork.c fnmatch.c \
+ getcwd.c getmntent.c getwd.c glob.c \
+ inet_aton.c memcmp.c mktime.c myrealloc.c \
+ putenv.c realpath.c stpcpy.c stpncpy.c \
+ strcasecmp.c strncasecmp.c strcspn.c strdup.c \
+ strerror.c strftime.c strcspn.c strstr.c \
+ strtol.c strtoul.c
noinst_HEADERS = \
- inet_aton.h fnmatch.h glob.h
+ error.h fnmatch.h glob.h inet_aton.h \
+ libgettext.h message.h po-lex.h str-list.h \
+ fstrcmp.h
+
noinst_LIBRARIES = libmisc.a
libmisc_a_SOURCES =
@@ -145,20 +150,22 @@ COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@
HEADERS = $(noinst_HEADERS)
-DIST_COMMON = Makefile.am Makefile.in alloca.c fnmatch.c getcwd.c \
-getmntent.c getwd.c glob.c inet_aton.c myrealloc.c putenv.c realpath.c \
-strdup.c strerror.c strspn.c strstr.c strtol.c strtoul.c
+DIST_COMMON = Makefile.am Makefile.in alloca.c error.c error.h \
+fnmatch.c getcwd.c getmntent.c getwd.c glob.c inet_aton.c myrealloc.c \
+putenv.c realpath.c stpcpy.c stpncpy.c strcasecmp.c strcspn.c strdup.c \
+strerror.c strncasecmp.c strspn.c strstr.c strtol.c strtoul.c
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = tar
GZIP = --best
-DEP_FILES = .deps/alloca.P .deps/fnmatch.P .deps/getcwd.P \
+DEP_FILES = .deps/alloca.P .deps/error.P .deps/fnmatch.P .deps/getcwd.P \
.deps/getmntent.P .deps/getwd.P .deps/glob.P .deps/inet_aton.P \
-.deps/myrealloc.P .deps/putenv.P .deps/realpath.P .deps/strdup.P \
-.deps/strerror.P .deps/strspn.P .deps/strstr.P .deps/strtol.P \
-.deps/strtoul.P
+.deps/myrealloc.P .deps/putenv.P .deps/realpath.P .deps/stpcpy.P \
+.deps/stpncpy.P .deps/strcasecmp.P .deps/strcspn.P .deps/strdup.P \
+.deps/strerror.P .deps/strncasecmp.P .deps/strspn.P .deps/strstr.P \
+.deps/strtol.P .deps/strtoul.P
SOURCES = $(libmisc_a_SOURCES)
OBJECTS = $(libmisc_a_OBJECTS)