1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
|
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
# Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
#
# This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
# project.
#
# Copyright (C) 1998-2006 OpenLink Software
#
# This project is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; only version 2 of the License, dated June 1991.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
subdir = libsrc/util
DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/binsrc/config/libtool.m4 \
$(top_srcdir)/binsrc/config/libxml.m4 \
$(top_srcdir)/binsrc/config/ltoptions.m4 \
$(top_srcdir)/binsrc/config/ltsugar.m4 \
$(top_srcdir)/binsrc/config/ltversion.m4 \
$(top_srcdir)/binsrc/config/lt~obsolete.m4 \
$(top_srcdir)/configure.in
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/libsrc/Dk/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
LTLIBRARIES = $(noinst_LTLIBRARIES)
libutil_la_LIBADD =
am_libutil_la_OBJECTS = libutil_la-buildarg.lo libutil_la-cfg2.lo \
libutil_la-cslentry.lo libutil_la-csllkup.lo \
libutil_la-cslnment.lo libutil_la-dbgmal.lo \
libutil_la-debug.lo libutil_la-dyntab.lo \
libutil_la-expandav.lo libutil_la-fnmatch.lo \
libutil_la-fnqual.lo libutil_la-fnsearch.lo \
libutil_la-fntodos.lo libutil_la-fnundos.lo \
libutil_la-getdate.lo libutil_la-getopt1.lo \
libutil_la-getopt.lo libutil_la-gettimeofday.lo \
libutil_la-login_digest.lo libutil_la-logmsg.lo \
libutil_la-ltrim.lo libutil_la-make_env.lo libutil_la-mpl.lo \
libutil_la-ncfg.lo libutil_la-ntapp.lo libutil_la-regerror.lo \
libutil_la-regexp.lo libutil_la-regsub.lo libutil_la-rtrim.lo \
libutil_la-setext.lo libutil_la-startup.lo \
libutil_la-stpcpy.lo libutil_la-strcpyin.lo \
libutil_la-strerror.lo libutil_la-stricmp.lo \
libutil_la-strindex.lo libutil_la-strinsrt.lo \
libutil_la-strlwr.lo libutil_la-strnicmp.lo \
libutil_la-strquote.lo libutil_la-strtok_r.lo \
libutil_la-strupr.lo libutil_la-strxpect.lo \
libutil_la-terminat.lo libutil_la-usage.lo libutil_la-uuid.lo \
libutil_la-wcslen.lo libutil_la-virt_mbrtowc.lo \
libutil_la-virt_mbsnrtowcs.lo libutil_la-virt_wcrtomb.lo \
libutil_la-virt_wcs_mask.lo libutil_la-virt_wcsnrtombs.lo \
libutil_la-pcre_chartables.lo libutil_la-pcre_compile.lo \
libutil_la-pcre_config.lo libutil_la-pcre_dfa_exec.lo \
libutil_la-pcre_exec.lo libutil_la-pcre_fullinfo.lo \
libutil_la-pcre_get.lo libutil_la-pcre_globals.lo \
libutil_la-pcre_newline.lo libutil_la-pcre_ord2utf8.lo \
libutil_la-pcre_study.lo libutil_la-pcre_tables.lo \
libutil_la-pcre_try_flipped.lo libutil_la-pcre_ucd.lo \
libutil_la-pcre_valid_utf8.lo libutil_la-pcre_version.lo \
libutil_la-pcre_xclass.lo
libutil_la_OBJECTS = $(am_libutil_la_OBJECTS)
libutil_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libutil_la_CFLAGS) \
$(CFLAGS) $(libutil_la_LDFLAGS) $(LDFLAGS) -o $@
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/libsrc/Dk
depcomp = $(SHELL) $(top_srcdir)/binsrc/config/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
SOURCES = $(libutil_la_SOURCES)
DIST_SOURCES = $(libutil_la_SOURCES)
HEADERS = $(noinst_HEADERS)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_LDFLAGS = @AM_LDFLAGS@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BINDIR = @BINDIR@
BUILD_GLIB_CFLAGS = @BUILD_GLIB_CFLAGS@
BUILD_GLIB_LIBS = @BUILD_GLIB_LIBS@
BUILD_OPTS = @BUILD_OPTS@
CC = @CC@
CCDEBUG = @CCDEBUG@
CCDEFS = @CCDEFS@
CCDEPMODE = @CCDEPMODE@
CCLIBS = @CCLIBS@
CCOPT = @CCOPT@
CCPLATFORMDEFS = @CCPLATFORMDEFS@
CCWARN = @CCWARN@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
FLEX = @FLEX@
GAWK = @GAWK@
GLIB_CFLAGS = @GLIB_CFLAGS@
GLIB_LIBS = @GLIB_LIBS@
GMODULE_CFLAGS = @GMODULE_CFLAGS@
GMODULE_LIBS = @GMODULE_LIBS@
GPERF = @GPERF@
GREP = @GREP@
HSL_CPPFLAGS = @HSL_CPPFLAGS@
HSL_LDFLAGS = @HSL_LDFLAGS@
HSL_LIBS = @HSL_LIBS@
HS_LOOKUP = @HS_LOOKUP@
HTMLDOC = @HTMLDOC@
IM_CONFIG = @IM_CONFIG@
IM_CPPFLAGS = @IM_CPPFLAGS@
IM_LDFLAGS = @IM_LDFLAGS@
IM_LIBS = @IM_LIBS@
INCDIR = @INCDIR@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LEX = @LEX@
LEXLIB = @LEXLIB@
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
LIBDIR = @LIBDIR@
LIBDL = @LIBDL@
LIBOBJS = @LIBOBJS@
LIBRDL = @LIBRDL@
LIBS = @LIBS@
LIBTHR = @LIBTHR@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OPSYS = @OPSYS@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PERL = @PERL@
PERL_CFLAGS = @PERL_CFLAGS@
PERL_LDFLAGS = @PERL_LDFLAGS@
PKG_CONFIG = @PKG_CONFIG@
PLSTATS = @PLSTATS@
PORT = @PORT@
PYTHON = @PYTHON@
PYTHON_CFLAGS = @PYTHON_CFLAGS@
PYTHON_LDFLAGS = @PYTHON_LDFLAGS@
RANLIB = @RANLIB@
RUBY = @RUBY@
RUBY_CFLAGS = @RUBY_CFLAGS@
RUBY_LDFLAGS = @RUBY_LDFLAGS@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
SYSLIBS = @SYSLIBS@
TOP = @TOP@
VERSION = @VERSION@
VIRT_AM_CFLAGS = @VIRT_AM_CFLAGS@
WBXML2_CFLAGS = @WBXML2_CFLAGS@
WBXML2_LDFLAGS = @WBXML2_LDFLAGS@
WGET = @WGET@
XML2_CONFIG = @XML2_CONFIG@
XML_CPPFLAGS = @XML_CPPFLAGS@
XML_LIBS = @XML_LIBS@
YACC = @YACC@
YFLAGS = @YFLAGS@
ZLIB_INC = @ZLIB_INC@
ZLIB_LIB = @ZLIB_LIB@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
ac_jdk2_path = @ac_jdk2_path@
ac_jdk3_path = @ac_jdk3_path@
ac_jdk4_path = @ac_jdk4_path@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
ccincl = @ccincl@
clntlibs = @clntlibs@
datadir = @datadir@
datarootdir = @datarootdir@
dbdir = @dbdir@
demodir = @demodir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
hostingdir = @hostingdir@
htmldir = @htmldir@
htmldocdir = @htmldocdir@
httprootdir = @httprootdir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
iodbc_LDFLAGS = @iodbc_LDFLAGS@
java_CPPFLAGS = @java_CPPFLAGS@
java_LDFLAGS = @java_LDFLAGS@
libdir = @libdir@
libexecdir = @libexecdir@
libxml_file = @libxml_file@
localedir = @localedir@
localstatedir = @localstatedir@
lt_ECHO = @lt_ECHO@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
openldap_CFLAGS = @openldap_CFLAGS@
openldap_LDFLAGS = @openldap_LDFLAGS@
openssl_CFLAGS = @openssl_CFLAGS@
openssl_LDFLAGS = @openssl_LDFLAGS@
pdfdir = @pdfdir@
pdfdocdir = @pdfdocdir@
php5_CFLAGS = @php5_CFLAGS@
php5_LDFLAGS = @php5_LDFLAGS@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
srvrlibs = @srvrlibs@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
vaddir = @vaddir@
GEN = $(SHELL) ${top_srcdir}/bin/generate
noinst_LTLIBRARIES = libutil.la
noinst_HEADERS = \
dbgmal.h dyntab.h fnmatch.h getdate.h getopt.h itypes.h listmac.h \
logmsg.h md5.h mpl.h ncfg.h oplthr.h regexp.h regmagic.h setext.h \
startup.h strfuns.h utalloc.h utf8funs.h uuid.h uuidP.h
libutil_la_CFLAGS = @VIRT_AM_CFLAGS@ -D_GNU_SOURCE -DIN_LIBUTIL \
-DGLOBALREF=extern -I$(top_srcdir)/libsrc \
-I$(top_srcdir)/libsrc/Dk -DSUPPORT_UTF8
libutil_la_LDFLAGS = -prefer-pic
libutil_la_SOURCES = \
buildarg.c \
cfg2.c \
cslentry.c \
csllkup.c \
cslnment.c \
dbgmal.c \
debug.c \
dyntab.c \
expandav.c \
fnmatch.c \
fnqual.c \
fnsearch.c \
fntodos.c \
fnundos.c \
getdate.c \
getopt1.c \
getopt.c \
gettimeofday.c \
login_digest.c \
logmsg.c \
ltrim.c \
make_env.c \
mpl.c \
ncfg.c \
ntapp.c \
regerror.c \
regexp.c \
regsub.c \
rtrim.c \
setext.c \
startup.c \
stpcpy.c \
strcpyin.c \
strerror.c \
stricmp.c \
strindex.c \
strinsrt.c \
strlwr.c \
strnicmp.c \
strquote.c \
strtok_r.c \
strupr.c \
strxpect.c \
terminat.c \
usage.c \
uuid.c \
wcslen.c \
virt_mbrtowc.c \
virt_mbsnrtowcs.c \
virt_wcrtomb.c \
virt_wcs_mask.c \
virt_wcsnrtombs.c \
pcrelib/pcre_chartables.c \
pcrelib/pcre_compile.c \
pcrelib/pcre_config.c \
pcrelib/pcre_dfa_exec.c \
pcrelib/pcre_exec.c \
pcrelib/pcre_fullinfo.c \
pcrelib/pcre_get.c \
pcrelib/pcre_globals.c \
pcrelib/pcre_newline.c \
pcrelib/pcre_ord2utf8.c \
pcrelib/pcre_study.c \
pcrelib/pcre_tables.c \
pcrelib/pcre_try_flipped.c \
pcrelib/pcre_ucd.c \
pcrelib/pcre_valid_utf8.c \
pcrelib/pcre_version.c \
pcrelib/pcre_xclass.c
BUILT_SOURCES = getdate.c
# ----------------------------------------------------------------------
#
# Additional files to distribute
#
# ----------------------------------------------------------------------
EXTRA_DIST = \
getdate.y \
MSG_BG.bin \
MSG_EN.bin \
pcrelib/AUTHORS \
pcrelib/LICENCE \
pcrelib/*.c \
pcrelib/*.h \
pcrelib/*.src \
win32/ptrlong.h \
win32/syslog.c \
win32/syslog.h \
winlog.mc \
winlog.rc
all: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libsrc/util/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu libsrc/util/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
clean-noinstLTLIBRARIES:
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
@list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
test "$$dir" != "$$p" || dir=.; \
echo "rm -f \"$${dir}/so_locations\""; \
rm -f "$${dir}/so_locations"; \
done
libutil.la: $(libutil_la_OBJECTS) $(libutil_la_DEPENDENCIES)
$(libutil_la_LINK) $(libutil_la_OBJECTS) $(libutil_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-buildarg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-cfg2.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-cslentry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-csllkup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-cslnment.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-dbgmal.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-debug.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-dyntab.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-expandav.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-fnmatch.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-fnqual.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-fnsearch.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-fntodos.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-fnundos.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-getdate.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-getopt.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-getopt1.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-gettimeofday.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-login_digest.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-logmsg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-ltrim.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-make_env.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-mpl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-ncfg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-ntapp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_chartables.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_compile.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_config.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_dfa_exec.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_exec.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_fullinfo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_get.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_globals.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_newline.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_ord2utf8.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_study.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_tables.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_try_flipped.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_ucd.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_valid_utf8.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_version.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-pcre_xclass.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-regerror.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-regexp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-regsub.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-rtrim.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-setext.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-startup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-stpcpy.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-strcpyin.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-strerror.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-stricmp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-strindex.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-strinsrt.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-strlwr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-strnicmp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-strquote.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-strtok_r.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-strupr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-strxpect.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-terminat.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-usage.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-uuid.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-virt_mbrtowc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-virt_mbsnrtowcs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-virt_wcrtomb.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-virt_wcs_mask.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-virt_wcsnrtombs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libutil_la-wcslen.Plo@am__quote@
.c.o:
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
.c.obj:
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
.c.lo:
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
libutil_la-buildarg.lo: buildarg.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-buildarg.lo -MD -MP -MF $(DEPDIR)/libutil_la-buildarg.Tpo -c -o libutil_la-buildarg.lo `test -f 'buildarg.c' || echo '$(srcdir)/'`buildarg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-buildarg.Tpo $(DEPDIR)/libutil_la-buildarg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='buildarg.c' object='libutil_la-buildarg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-buildarg.lo `test -f 'buildarg.c' || echo '$(srcdir)/'`buildarg.c
libutil_la-cfg2.lo: cfg2.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-cfg2.lo -MD -MP -MF $(DEPDIR)/libutil_la-cfg2.Tpo -c -o libutil_la-cfg2.lo `test -f 'cfg2.c' || echo '$(srcdir)/'`cfg2.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-cfg2.Tpo $(DEPDIR)/libutil_la-cfg2.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cfg2.c' object='libutil_la-cfg2.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-cfg2.lo `test -f 'cfg2.c' || echo '$(srcdir)/'`cfg2.c
libutil_la-cslentry.lo: cslentry.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-cslentry.lo -MD -MP -MF $(DEPDIR)/libutil_la-cslentry.Tpo -c -o libutil_la-cslentry.lo `test -f 'cslentry.c' || echo '$(srcdir)/'`cslentry.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-cslentry.Tpo $(DEPDIR)/libutil_la-cslentry.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cslentry.c' object='libutil_la-cslentry.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-cslentry.lo `test -f 'cslentry.c' || echo '$(srcdir)/'`cslentry.c
libutil_la-csllkup.lo: csllkup.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-csllkup.lo -MD -MP -MF $(DEPDIR)/libutil_la-csllkup.Tpo -c -o libutil_la-csllkup.lo `test -f 'csllkup.c' || echo '$(srcdir)/'`csllkup.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-csllkup.Tpo $(DEPDIR)/libutil_la-csllkup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='csllkup.c' object='libutil_la-csllkup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-csllkup.lo `test -f 'csllkup.c' || echo '$(srcdir)/'`csllkup.c
libutil_la-cslnment.lo: cslnment.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-cslnment.lo -MD -MP -MF $(DEPDIR)/libutil_la-cslnment.Tpo -c -o libutil_la-cslnment.lo `test -f 'cslnment.c' || echo '$(srcdir)/'`cslnment.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-cslnment.Tpo $(DEPDIR)/libutil_la-cslnment.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cslnment.c' object='libutil_la-cslnment.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-cslnment.lo `test -f 'cslnment.c' || echo '$(srcdir)/'`cslnment.c
libutil_la-dbgmal.lo: dbgmal.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-dbgmal.lo -MD -MP -MF $(DEPDIR)/libutil_la-dbgmal.Tpo -c -o libutil_la-dbgmal.lo `test -f 'dbgmal.c' || echo '$(srcdir)/'`dbgmal.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-dbgmal.Tpo $(DEPDIR)/libutil_la-dbgmal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dbgmal.c' object='libutil_la-dbgmal.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-dbgmal.lo `test -f 'dbgmal.c' || echo '$(srcdir)/'`dbgmal.c
libutil_la-debug.lo: debug.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-debug.lo -MD -MP -MF $(DEPDIR)/libutil_la-debug.Tpo -c -o libutil_la-debug.lo `test -f 'debug.c' || echo '$(srcdir)/'`debug.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-debug.Tpo $(DEPDIR)/libutil_la-debug.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='debug.c' object='libutil_la-debug.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-debug.lo `test -f 'debug.c' || echo '$(srcdir)/'`debug.c
libutil_la-dyntab.lo: dyntab.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-dyntab.lo -MD -MP -MF $(DEPDIR)/libutil_la-dyntab.Tpo -c -o libutil_la-dyntab.lo `test -f 'dyntab.c' || echo '$(srcdir)/'`dyntab.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-dyntab.Tpo $(DEPDIR)/libutil_la-dyntab.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dyntab.c' object='libutil_la-dyntab.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-dyntab.lo `test -f 'dyntab.c' || echo '$(srcdir)/'`dyntab.c
libutil_la-expandav.lo: expandav.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-expandav.lo -MD -MP -MF $(DEPDIR)/libutil_la-expandav.Tpo -c -o libutil_la-expandav.lo `test -f 'expandav.c' || echo '$(srcdir)/'`expandav.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-expandav.Tpo $(DEPDIR)/libutil_la-expandav.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='expandav.c' object='libutil_la-expandav.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-expandav.lo `test -f 'expandav.c' || echo '$(srcdir)/'`expandav.c
libutil_la-fnmatch.lo: fnmatch.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-fnmatch.lo -MD -MP -MF $(DEPDIR)/libutil_la-fnmatch.Tpo -c -o libutil_la-fnmatch.lo `test -f 'fnmatch.c' || echo '$(srcdir)/'`fnmatch.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-fnmatch.Tpo $(DEPDIR)/libutil_la-fnmatch.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fnmatch.c' object='libutil_la-fnmatch.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-fnmatch.lo `test -f 'fnmatch.c' || echo '$(srcdir)/'`fnmatch.c
libutil_la-fnqual.lo: fnqual.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-fnqual.lo -MD -MP -MF $(DEPDIR)/libutil_la-fnqual.Tpo -c -o libutil_la-fnqual.lo `test -f 'fnqual.c' || echo '$(srcdir)/'`fnqual.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-fnqual.Tpo $(DEPDIR)/libutil_la-fnqual.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fnqual.c' object='libutil_la-fnqual.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-fnqual.lo `test -f 'fnqual.c' || echo '$(srcdir)/'`fnqual.c
libutil_la-fnsearch.lo: fnsearch.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-fnsearch.lo -MD -MP -MF $(DEPDIR)/libutil_la-fnsearch.Tpo -c -o libutil_la-fnsearch.lo `test -f 'fnsearch.c' || echo '$(srcdir)/'`fnsearch.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-fnsearch.Tpo $(DEPDIR)/libutil_la-fnsearch.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fnsearch.c' object='libutil_la-fnsearch.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-fnsearch.lo `test -f 'fnsearch.c' || echo '$(srcdir)/'`fnsearch.c
libutil_la-fntodos.lo: fntodos.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-fntodos.lo -MD -MP -MF $(DEPDIR)/libutil_la-fntodos.Tpo -c -o libutil_la-fntodos.lo `test -f 'fntodos.c' || echo '$(srcdir)/'`fntodos.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-fntodos.Tpo $(DEPDIR)/libutil_la-fntodos.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fntodos.c' object='libutil_la-fntodos.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-fntodos.lo `test -f 'fntodos.c' || echo '$(srcdir)/'`fntodos.c
libutil_la-fnundos.lo: fnundos.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-fnundos.lo -MD -MP -MF $(DEPDIR)/libutil_la-fnundos.Tpo -c -o libutil_la-fnundos.lo `test -f 'fnundos.c' || echo '$(srcdir)/'`fnundos.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-fnundos.Tpo $(DEPDIR)/libutil_la-fnundos.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fnundos.c' object='libutil_la-fnundos.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-fnundos.lo `test -f 'fnundos.c' || echo '$(srcdir)/'`fnundos.c
libutil_la-getdate.lo: getdate.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-getdate.lo -MD -MP -MF $(DEPDIR)/libutil_la-getdate.Tpo -c -o libutil_la-getdate.lo `test -f 'getdate.c' || echo '$(srcdir)/'`getdate.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-getdate.Tpo $(DEPDIR)/libutil_la-getdate.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='getdate.c' object='libutil_la-getdate.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-getdate.lo `test -f 'getdate.c' || echo '$(srcdir)/'`getdate.c
libutil_la-getopt1.lo: getopt1.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-getopt1.lo -MD -MP -MF $(DEPDIR)/libutil_la-getopt1.Tpo -c -o libutil_la-getopt1.lo `test -f 'getopt1.c' || echo '$(srcdir)/'`getopt1.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-getopt1.Tpo $(DEPDIR)/libutil_la-getopt1.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='getopt1.c' object='libutil_la-getopt1.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-getopt1.lo `test -f 'getopt1.c' || echo '$(srcdir)/'`getopt1.c
libutil_la-getopt.lo: getopt.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-getopt.lo -MD -MP -MF $(DEPDIR)/libutil_la-getopt.Tpo -c -o libutil_la-getopt.lo `test -f 'getopt.c' || echo '$(srcdir)/'`getopt.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-getopt.Tpo $(DEPDIR)/libutil_la-getopt.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='getopt.c' object='libutil_la-getopt.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-getopt.lo `test -f 'getopt.c' || echo '$(srcdir)/'`getopt.c
libutil_la-gettimeofday.lo: gettimeofday.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-gettimeofday.lo -MD -MP -MF $(DEPDIR)/libutil_la-gettimeofday.Tpo -c -o libutil_la-gettimeofday.lo `test -f 'gettimeofday.c' || echo '$(srcdir)/'`gettimeofday.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-gettimeofday.Tpo $(DEPDIR)/libutil_la-gettimeofday.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gettimeofday.c' object='libutil_la-gettimeofday.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-gettimeofday.lo `test -f 'gettimeofday.c' || echo '$(srcdir)/'`gettimeofday.c
libutil_la-login_digest.lo: login_digest.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-login_digest.lo -MD -MP -MF $(DEPDIR)/libutil_la-login_digest.Tpo -c -o libutil_la-login_digest.lo `test -f 'login_digest.c' || echo '$(srcdir)/'`login_digest.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-login_digest.Tpo $(DEPDIR)/libutil_la-login_digest.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='login_digest.c' object='libutil_la-login_digest.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-login_digest.lo `test -f 'login_digest.c' || echo '$(srcdir)/'`login_digest.c
libutil_la-logmsg.lo: logmsg.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-logmsg.lo -MD -MP -MF $(DEPDIR)/libutil_la-logmsg.Tpo -c -o libutil_la-logmsg.lo `test -f 'logmsg.c' || echo '$(srcdir)/'`logmsg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-logmsg.Tpo $(DEPDIR)/libutil_la-logmsg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='logmsg.c' object='libutil_la-logmsg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-logmsg.lo `test -f 'logmsg.c' || echo '$(srcdir)/'`logmsg.c
libutil_la-ltrim.lo: ltrim.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-ltrim.lo -MD -MP -MF $(DEPDIR)/libutil_la-ltrim.Tpo -c -o libutil_la-ltrim.lo `test -f 'ltrim.c' || echo '$(srcdir)/'`ltrim.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-ltrim.Tpo $(DEPDIR)/libutil_la-ltrim.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ltrim.c' object='libutil_la-ltrim.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-ltrim.lo `test -f 'ltrim.c' || echo '$(srcdir)/'`ltrim.c
libutil_la-make_env.lo: make_env.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-make_env.lo -MD -MP -MF $(DEPDIR)/libutil_la-make_env.Tpo -c -o libutil_la-make_env.lo `test -f 'make_env.c' || echo '$(srcdir)/'`make_env.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-make_env.Tpo $(DEPDIR)/libutil_la-make_env.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='make_env.c' object='libutil_la-make_env.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-make_env.lo `test -f 'make_env.c' || echo '$(srcdir)/'`make_env.c
libutil_la-mpl.lo: mpl.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-mpl.lo -MD -MP -MF $(DEPDIR)/libutil_la-mpl.Tpo -c -o libutil_la-mpl.lo `test -f 'mpl.c' || echo '$(srcdir)/'`mpl.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-mpl.Tpo $(DEPDIR)/libutil_la-mpl.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mpl.c' object='libutil_la-mpl.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-mpl.lo `test -f 'mpl.c' || echo '$(srcdir)/'`mpl.c
libutil_la-ncfg.lo: ncfg.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-ncfg.lo -MD -MP -MF $(DEPDIR)/libutil_la-ncfg.Tpo -c -o libutil_la-ncfg.lo `test -f 'ncfg.c' || echo '$(srcdir)/'`ncfg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-ncfg.Tpo $(DEPDIR)/libutil_la-ncfg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ncfg.c' object='libutil_la-ncfg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-ncfg.lo `test -f 'ncfg.c' || echo '$(srcdir)/'`ncfg.c
libutil_la-ntapp.lo: ntapp.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-ntapp.lo -MD -MP -MF $(DEPDIR)/libutil_la-ntapp.Tpo -c -o libutil_la-ntapp.lo `test -f 'ntapp.c' || echo '$(srcdir)/'`ntapp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-ntapp.Tpo $(DEPDIR)/libutil_la-ntapp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ntapp.c' object='libutil_la-ntapp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-ntapp.lo `test -f 'ntapp.c' || echo '$(srcdir)/'`ntapp.c
libutil_la-regerror.lo: regerror.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-regerror.lo -MD -MP -MF $(DEPDIR)/libutil_la-regerror.Tpo -c -o libutil_la-regerror.lo `test -f 'regerror.c' || echo '$(srcdir)/'`regerror.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-regerror.Tpo $(DEPDIR)/libutil_la-regerror.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='regerror.c' object='libutil_la-regerror.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-regerror.lo `test -f 'regerror.c' || echo '$(srcdir)/'`regerror.c
libutil_la-regexp.lo: regexp.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-regexp.lo -MD -MP -MF $(DEPDIR)/libutil_la-regexp.Tpo -c -o libutil_la-regexp.lo `test -f 'regexp.c' || echo '$(srcdir)/'`regexp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-regexp.Tpo $(DEPDIR)/libutil_la-regexp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='regexp.c' object='libutil_la-regexp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-regexp.lo `test -f 'regexp.c' || echo '$(srcdir)/'`regexp.c
libutil_la-regsub.lo: regsub.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-regsub.lo -MD -MP -MF $(DEPDIR)/libutil_la-regsub.Tpo -c -o libutil_la-regsub.lo `test -f 'regsub.c' || echo '$(srcdir)/'`regsub.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-regsub.Tpo $(DEPDIR)/libutil_la-regsub.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='regsub.c' object='libutil_la-regsub.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-regsub.lo `test -f 'regsub.c' || echo '$(srcdir)/'`regsub.c
libutil_la-rtrim.lo: rtrim.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-rtrim.lo -MD -MP -MF $(DEPDIR)/libutil_la-rtrim.Tpo -c -o libutil_la-rtrim.lo `test -f 'rtrim.c' || echo '$(srcdir)/'`rtrim.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-rtrim.Tpo $(DEPDIR)/libutil_la-rtrim.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rtrim.c' object='libutil_la-rtrim.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-rtrim.lo `test -f 'rtrim.c' || echo '$(srcdir)/'`rtrim.c
libutil_la-setext.lo: setext.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-setext.lo -MD -MP -MF $(DEPDIR)/libutil_la-setext.Tpo -c -o libutil_la-setext.lo `test -f 'setext.c' || echo '$(srcdir)/'`setext.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-setext.Tpo $(DEPDIR)/libutil_la-setext.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='setext.c' object='libutil_la-setext.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-setext.lo `test -f 'setext.c' || echo '$(srcdir)/'`setext.c
libutil_la-startup.lo: startup.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-startup.lo -MD -MP -MF $(DEPDIR)/libutil_la-startup.Tpo -c -o libutil_la-startup.lo `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-startup.Tpo $(DEPDIR)/libutil_la-startup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='startup.c' object='libutil_la-startup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-startup.lo `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
libutil_la-stpcpy.lo: stpcpy.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-stpcpy.lo -MD -MP -MF $(DEPDIR)/libutil_la-stpcpy.Tpo -c -o libutil_la-stpcpy.lo `test -f 'stpcpy.c' || echo '$(srcdir)/'`stpcpy.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-stpcpy.Tpo $(DEPDIR)/libutil_la-stpcpy.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='stpcpy.c' object='libutil_la-stpcpy.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-stpcpy.lo `test -f 'stpcpy.c' || echo '$(srcdir)/'`stpcpy.c
libutil_la-strcpyin.lo: strcpyin.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-strcpyin.lo -MD -MP -MF $(DEPDIR)/libutil_la-strcpyin.Tpo -c -o libutil_la-strcpyin.lo `test -f 'strcpyin.c' || echo '$(srcdir)/'`strcpyin.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-strcpyin.Tpo $(DEPDIR)/libutil_la-strcpyin.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strcpyin.c' object='libutil_la-strcpyin.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-strcpyin.lo `test -f 'strcpyin.c' || echo '$(srcdir)/'`strcpyin.c
libutil_la-strerror.lo: strerror.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-strerror.lo -MD -MP -MF $(DEPDIR)/libutil_la-strerror.Tpo -c -o libutil_la-strerror.lo `test -f 'strerror.c' || echo '$(srcdir)/'`strerror.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-strerror.Tpo $(DEPDIR)/libutil_la-strerror.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strerror.c' object='libutil_la-strerror.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-strerror.lo `test -f 'strerror.c' || echo '$(srcdir)/'`strerror.c
libutil_la-stricmp.lo: stricmp.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-stricmp.lo -MD -MP -MF $(DEPDIR)/libutil_la-stricmp.Tpo -c -o libutil_la-stricmp.lo `test -f 'stricmp.c' || echo '$(srcdir)/'`stricmp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-stricmp.Tpo $(DEPDIR)/libutil_la-stricmp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='stricmp.c' object='libutil_la-stricmp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-stricmp.lo `test -f 'stricmp.c' || echo '$(srcdir)/'`stricmp.c
libutil_la-strindex.lo: strindex.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-strindex.lo -MD -MP -MF $(DEPDIR)/libutil_la-strindex.Tpo -c -o libutil_la-strindex.lo `test -f 'strindex.c' || echo '$(srcdir)/'`strindex.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-strindex.Tpo $(DEPDIR)/libutil_la-strindex.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strindex.c' object='libutil_la-strindex.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-strindex.lo `test -f 'strindex.c' || echo '$(srcdir)/'`strindex.c
libutil_la-strinsrt.lo: strinsrt.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-strinsrt.lo -MD -MP -MF $(DEPDIR)/libutil_la-strinsrt.Tpo -c -o libutil_la-strinsrt.lo `test -f 'strinsrt.c' || echo '$(srcdir)/'`strinsrt.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-strinsrt.Tpo $(DEPDIR)/libutil_la-strinsrt.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strinsrt.c' object='libutil_la-strinsrt.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-strinsrt.lo `test -f 'strinsrt.c' || echo '$(srcdir)/'`strinsrt.c
libutil_la-strlwr.lo: strlwr.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-strlwr.lo -MD -MP -MF $(DEPDIR)/libutil_la-strlwr.Tpo -c -o libutil_la-strlwr.lo `test -f 'strlwr.c' || echo '$(srcdir)/'`strlwr.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-strlwr.Tpo $(DEPDIR)/libutil_la-strlwr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strlwr.c' object='libutil_la-strlwr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-strlwr.lo `test -f 'strlwr.c' || echo '$(srcdir)/'`strlwr.c
libutil_la-strnicmp.lo: strnicmp.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-strnicmp.lo -MD -MP -MF $(DEPDIR)/libutil_la-strnicmp.Tpo -c -o libutil_la-strnicmp.lo `test -f 'strnicmp.c' || echo '$(srcdir)/'`strnicmp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-strnicmp.Tpo $(DEPDIR)/libutil_la-strnicmp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strnicmp.c' object='libutil_la-strnicmp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-strnicmp.lo `test -f 'strnicmp.c' || echo '$(srcdir)/'`strnicmp.c
libutil_la-strquote.lo: strquote.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-strquote.lo -MD -MP -MF $(DEPDIR)/libutil_la-strquote.Tpo -c -o libutil_la-strquote.lo `test -f 'strquote.c' || echo '$(srcdir)/'`strquote.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-strquote.Tpo $(DEPDIR)/libutil_la-strquote.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strquote.c' object='libutil_la-strquote.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-strquote.lo `test -f 'strquote.c' || echo '$(srcdir)/'`strquote.c
libutil_la-strtok_r.lo: strtok_r.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-strtok_r.lo -MD -MP -MF $(DEPDIR)/libutil_la-strtok_r.Tpo -c -o libutil_la-strtok_r.lo `test -f 'strtok_r.c' || echo '$(srcdir)/'`strtok_r.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-strtok_r.Tpo $(DEPDIR)/libutil_la-strtok_r.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtok_r.c' object='libutil_la-strtok_r.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-strtok_r.lo `test -f 'strtok_r.c' || echo '$(srcdir)/'`strtok_r.c
libutil_la-strupr.lo: strupr.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-strupr.lo -MD -MP -MF $(DEPDIR)/libutil_la-strupr.Tpo -c -o libutil_la-strupr.lo `test -f 'strupr.c' || echo '$(srcdir)/'`strupr.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-strupr.Tpo $(DEPDIR)/libutil_la-strupr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strupr.c' object='libutil_la-strupr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-strupr.lo `test -f 'strupr.c' || echo '$(srcdir)/'`strupr.c
libutil_la-strxpect.lo: strxpect.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-strxpect.lo -MD -MP -MF $(DEPDIR)/libutil_la-strxpect.Tpo -c -o libutil_la-strxpect.lo `test -f 'strxpect.c' || echo '$(srcdir)/'`strxpect.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-strxpect.Tpo $(DEPDIR)/libutil_la-strxpect.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strxpect.c' object='libutil_la-strxpect.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-strxpect.lo `test -f 'strxpect.c' || echo '$(srcdir)/'`strxpect.c
libutil_la-terminat.lo: terminat.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-terminat.lo -MD -MP -MF $(DEPDIR)/libutil_la-terminat.Tpo -c -o libutil_la-terminat.lo `test -f 'terminat.c' || echo '$(srcdir)/'`terminat.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-terminat.Tpo $(DEPDIR)/libutil_la-terminat.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='terminat.c' object='libutil_la-terminat.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-terminat.lo `test -f 'terminat.c' || echo '$(srcdir)/'`terminat.c
libutil_la-usage.lo: usage.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-usage.lo -MD -MP -MF $(DEPDIR)/libutil_la-usage.Tpo -c -o libutil_la-usage.lo `test -f 'usage.c' || echo '$(srcdir)/'`usage.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-usage.Tpo $(DEPDIR)/libutil_la-usage.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='usage.c' object='libutil_la-usage.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-usage.lo `test -f 'usage.c' || echo '$(srcdir)/'`usage.c
libutil_la-uuid.lo: uuid.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-uuid.lo -MD -MP -MF $(DEPDIR)/libutil_la-uuid.Tpo -c -o libutil_la-uuid.lo `test -f 'uuid.c' || echo '$(srcdir)/'`uuid.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-uuid.Tpo $(DEPDIR)/libutil_la-uuid.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='uuid.c' object='libutil_la-uuid.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-uuid.lo `test -f 'uuid.c' || echo '$(srcdir)/'`uuid.c
libutil_la-wcslen.lo: wcslen.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-wcslen.lo -MD -MP -MF $(DEPDIR)/libutil_la-wcslen.Tpo -c -o libutil_la-wcslen.lo `test -f 'wcslen.c' || echo '$(srcdir)/'`wcslen.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-wcslen.Tpo $(DEPDIR)/libutil_la-wcslen.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wcslen.c' object='libutil_la-wcslen.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-wcslen.lo `test -f 'wcslen.c' || echo '$(srcdir)/'`wcslen.c
libutil_la-virt_mbrtowc.lo: virt_mbrtowc.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-virt_mbrtowc.lo -MD -MP -MF $(DEPDIR)/libutil_la-virt_mbrtowc.Tpo -c -o libutil_la-virt_mbrtowc.lo `test -f 'virt_mbrtowc.c' || echo '$(srcdir)/'`virt_mbrtowc.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-virt_mbrtowc.Tpo $(DEPDIR)/libutil_la-virt_mbrtowc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='virt_mbrtowc.c' object='libutil_la-virt_mbrtowc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-virt_mbrtowc.lo `test -f 'virt_mbrtowc.c' || echo '$(srcdir)/'`virt_mbrtowc.c
libutil_la-virt_mbsnrtowcs.lo: virt_mbsnrtowcs.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-virt_mbsnrtowcs.lo -MD -MP -MF $(DEPDIR)/libutil_la-virt_mbsnrtowcs.Tpo -c -o libutil_la-virt_mbsnrtowcs.lo `test -f 'virt_mbsnrtowcs.c' || echo '$(srcdir)/'`virt_mbsnrtowcs.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-virt_mbsnrtowcs.Tpo $(DEPDIR)/libutil_la-virt_mbsnrtowcs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='virt_mbsnrtowcs.c' object='libutil_la-virt_mbsnrtowcs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-virt_mbsnrtowcs.lo `test -f 'virt_mbsnrtowcs.c' || echo '$(srcdir)/'`virt_mbsnrtowcs.c
libutil_la-virt_wcrtomb.lo: virt_wcrtomb.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-virt_wcrtomb.lo -MD -MP -MF $(DEPDIR)/libutil_la-virt_wcrtomb.Tpo -c -o libutil_la-virt_wcrtomb.lo `test -f 'virt_wcrtomb.c' || echo '$(srcdir)/'`virt_wcrtomb.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-virt_wcrtomb.Tpo $(DEPDIR)/libutil_la-virt_wcrtomb.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='virt_wcrtomb.c' object='libutil_la-virt_wcrtomb.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-virt_wcrtomb.lo `test -f 'virt_wcrtomb.c' || echo '$(srcdir)/'`virt_wcrtomb.c
libutil_la-virt_wcs_mask.lo: virt_wcs_mask.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-virt_wcs_mask.lo -MD -MP -MF $(DEPDIR)/libutil_la-virt_wcs_mask.Tpo -c -o libutil_la-virt_wcs_mask.lo `test -f 'virt_wcs_mask.c' || echo '$(srcdir)/'`virt_wcs_mask.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-virt_wcs_mask.Tpo $(DEPDIR)/libutil_la-virt_wcs_mask.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='virt_wcs_mask.c' object='libutil_la-virt_wcs_mask.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-virt_wcs_mask.lo `test -f 'virt_wcs_mask.c' || echo '$(srcdir)/'`virt_wcs_mask.c
libutil_la-virt_wcsnrtombs.lo: virt_wcsnrtombs.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-virt_wcsnrtombs.lo -MD -MP -MF $(DEPDIR)/libutil_la-virt_wcsnrtombs.Tpo -c -o libutil_la-virt_wcsnrtombs.lo `test -f 'virt_wcsnrtombs.c' || echo '$(srcdir)/'`virt_wcsnrtombs.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-virt_wcsnrtombs.Tpo $(DEPDIR)/libutil_la-virt_wcsnrtombs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='virt_wcsnrtombs.c' object='libutil_la-virt_wcsnrtombs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-virt_wcsnrtombs.lo `test -f 'virt_wcsnrtombs.c' || echo '$(srcdir)/'`virt_wcsnrtombs.c
libutil_la-pcre_chartables.lo: pcrelib/pcre_chartables.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_chartables.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_chartables.Tpo -c -o libutil_la-pcre_chartables.lo `test -f 'pcrelib/pcre_chartables.c' || echo '$(srcdir)/'`pcrelib/pcre_chartables.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_chartables.Tpo $(DEPDIR)/libutil_la-pcre_chartables.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_chartables.c' object='libutil_la-pcre_chartables.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_chartables.lo `test -f 'pcrelib/pcre_chartables.c' || echo '$(srcdir)/'`pcrelib/pcre_chartables.c
libutil_la-pcre_compile.lo: pcrelib/pcre_compile.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_compile.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_compile.Tpo -c -o libutil_la-pcre_compile.lo `test -f 'pcrelib/pcre_compile.c' || echo '$(srcdir)/'`pcrelib/pcre_compile.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_compile.Tpo $(DEPDIR)/libutil_la-pcre_compile.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_compile.c' object='libutil_la-pcre_compile.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_compile.lo `test -f 'pcrelib/pcre_compile.c' || echo '$(srcdir)/'`pcrelib/pcre_compile.c
libutil_la-pcre_config.lo: pcrelib/pcre_config.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_config.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_config.Tpo -c -o libutil_la-pcre_config.lo `test -f 'pcrelib/pcre_config.c' || echo '$(srcdir)/'`pcrelib/pcre_config.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_config.Tpo $(DEPDIR)/libutil_la-pcre_config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_config.c' object='libutil_la-pcre_config.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_config.lo `test -f 'pcrelib/pcre_config.c' || echo '$(srcdir)/'`pcrelib/pcre_config.c
libutil_la-pcre_dfa_exec.lo: pcrelib/pcre_dfa_exec.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_dfa_exec.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_dfa_exec.Tpo -c -o libutil_la-pcre_dfa_exec.lo `test -f 'pcrelib/pcre_dfa_exec.c' || echo '$(srcdir)/'`pcrelib/pcre_dfa_exec.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_dfa_exec.Tpo $(DEPDIR)/libutil_la-pcre_dfa_exec.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_dfa_exec.c' object='libutil_la-pcre_dfa_exec.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_dfa_exec.lo `test -f 'pcrelib/pcre_dfa_exec.c' || echo '$(srcdir)/'`pcrelib/pcre_dfa_exec.c
libutil_la-pcre_exec.lo: pcrelib/pcre_exec.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_exec.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_exec.Tpo -c -o libutil_la-pcre_exec.lo `test -f 'pcrelib/pcre_exec.c' || echo '$(srcdir)/'`pcrelib/pcre_exec.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_exec.Tpo $(DEPDIR)/libutil_la-pcre_exec.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_exec.c' object='libutil_la-pcre_exec.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_exec.lo `test -f 'pcrelib/pcre_exec.c' || echo '$(srcdir)/'`pcrelib/pcre_exec.c
libutil_la-pcre_fullinfo.lo: pcrelib/pcre_fullinfo.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_fullinfo.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_fullinfo.Tpo -c -o libutil_la-pcre_fullinfo.lo `test -f 'pcrelib/pcre_fullinfo.c' || echo '$(srcdir)/'`pcrelib/pcre_fullinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_fullinfo.Tpo $(DEPDIR)/libutil_la-pcre_fullinfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_fullinfo.c' object='libutil_la-pcre_fullinfo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_fullinfo.lo `test -f 'pcrelib/pcre_fullinfo.c' || echo '$(srcdir)/'`pcrelib/pcre_fullinfo.c
libutil_la-pcre_get.lo: pcrelib/pcre_get.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_get.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_get.Tpo -c -o libutil_la-pcre_get.lo `test -f 'pcrelib/pcre_get.c' || echo '$(srcdir)/'`pcrelib/pcre_get.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_get.Tpo $(DEPDIR)/libutil_la-pcre_get.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_get.c' object='libutil_la-pcre_get.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_get.lo `test -f 'pcrelib/pcre_get.c' || echo '$(srcdir)/'`pcrelib/pcre_get.c
libutil_la-pcre_globals.lo: pcrelib/pcre_globals.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_globals.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_globals.Tpo -c -o libutil_la-pcre_globals.lo `test -f 'pcrelib/pcre_globals.c' || echo '$(srcdir)/'`pcrelib/pcre_globals.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_globals.Tpo $(DEPDIR)/libutil_la-pcre_globals.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_globals.c' object='libutil_la-pcre_globals.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_globals.lo `test -f 'pcrelib/pcre_globals.c' || echo '$(srcdir)/'`pcrelib/pcre_globals.c
libutil_la-pcre_newline.lo: pcrelib/pcre_newline.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_newline.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_newline.Tpo -c -o libutil_la-pcre_newline.lo `test -f 'pcrelib/pcre_newline.c' || echo '$(srcdir)/'`pcrelib/pcre_newline.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_newline.Tpo $(DEPDIR)/libutil_la-pcre_newline.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_newline.c' object='libutil_la-pcre_newline.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_newline.lo `test -f 'pcrelib/pcre_newline.c' || echo '$(srcdir)/'`pcrelib/pcre_newline.c
libutil_la-pcre_ord2utf8.lo: pcrelib/pcre_ord2utf8.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_ord2utf8.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_ord2utf8.Tpo -c -o libutil_la-pcre_ord2utf8.lo `test -f 'pcrelib/pcre_ord2utf8.c' || echo '$(srcdir)/'`pcrelib/pcre_ord2utf8.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_ord2utf8.Tpo $(DEPDIR)/libutil_la-pcre_ord2utf8.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_ord2utf8.c' object='libutil_la-pcre_ord2utf8.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_ord2utf8.lo `test -f 'pcrelib/pcre_ord2utf8.c' || echo '$(srcdir)/'`pcrelib/pcre_ord2utf8.c
libutil_la-pcre_study.lo: pcrelib/pcre_study.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_study.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_study.Tpo -c -o libutil_la-pcre_study.lo `test -f 'pcrelib/pcre_study.c' || echo '$(srcdir)/'`pcrelib/pcre_study.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_study.Tpo $(DEPDIR)/libutil_la-pcre_study.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_study.c' object='libutil_la-pcre_study.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_study.lo `test -f 'pcrelib/pcre_study.c' || echo '$(srcdir)/'`pcrelib/pcre_study.c
libutil_la-pcre_tables.lo: pcrelib/pcre_tables.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_tables.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_tables.Tpo -c -o libutil_la-pcre_tables.lo `test -f 'pcrelib/pcre_tables.c' || echo '$(srcdir)/'`pcrelib/pcre_tables.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_tables.Tpo $(DEPDIR)/libutil_la-pcre_tables.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_tables.c' object='libutil_la-pcre_tables.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_tables.lo `test -f 'pcrelib/pcre_tables.c' || echo '$(srcdir)/'`pcrelib/pcre_tables.c
libutil_la-pcre_try_flipped.lo: pcrelib/pcre_try_flipped.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_try_flipped.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_try_flipped.Tpo -c -o libutil_la-pcre_try_flipped.lo `test -f 'pcrelib/pcre_try_flipped.c' || echo '$(srcdir)/'`pcrelib/pcre_try_flipped.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_try_flipped.Tpo $(DEPDIR)/libutil_la-pcre_try_flipped.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_try_flipped.c' object='libutil_la-pcre_try_flipped.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_try_flipped.lo `test -f 'pcrelib/pcre_try_flipped.c' || echo '$(srcdir)/'`pcrelib/pcre_try_flipped.c
libutil_la-pcre_ucd.lo: pcrelib/pcre_ucd.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_ucd.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_ucd.Tpo -c -o libutil_la-pcre_ucd.lo `test -f 'pcrelib/pcre_ucd.c' || echo '$(srcdir)/'`pcrelib/pcre_ucd.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_ucd.Tpo $(DEPDIR)/libutil_la-pcre_ucd.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_ucd.c' object='libutil_la-pcre_ucd.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_ucd.lo `test -f 'pcrelib/pcre_ucd.c' || echo '$(srcdir)/'`pcrelib/pcre_ucd.c
libutil_la-pcre_valid_utf8.lo: pcrelib/pcre_valid_utf8.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_valid_utf8.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_valid_utf8.Tpo -c -o libutil_la-pcre_valid_utf8.lo `test -f 'pcrelib/pcre_valid_utf8.c' || echo '$(srcdir)/'`pcrelib/pcre_valid_utf8.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_valid_utf8.Tpo $(DEPDIR)/libutil_la-pcre_valid_utf8.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_valid_utf8.c' object='libutil_la-pcre_valid_utf8.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_valid_utf8.lo `test -f 'pcrelib/pcre_valid_utf8.c' || echo '$(srcdir)/'`pcrelib/pcre_valid_utf8.c
libutil_la-pcre_version.lo: pcrelib/pcre_version.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_version.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_version.Tpo -c -o libutil_la-pcre_version.lo `test -f 'pcrelib/pcre_version.c' || echo '$(srcdir)/'`pcrelib/pcre_version.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_version.Tpo $(DEPDIR)/libutil_la-pcre_version.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_version.c' object='libutil_la-pcre_version.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_version.lo `test -f 'pcrelib/pcre_version.c' || echo '$(srcdir)/'`pcrelib/pcre_version.c
libutil_la-pcre_xclass.lo: pcrelib/pcre_xclass.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -MT libutil_la-pcre_xclass.lo -MD -MP -MF $(DEPDIR)/libutil_la-pcre_xclass.Tpo -c -o libutil_la-pcre_xclass.lo `test -f 'pcrelib/pcre_xclass.c' || echo '$(srcdir)/'`pcrelib/pcre_xclass.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libutil_la-pcre_xclass.Tpo $(DEPDIR)/libutil_la-pcre_xclass.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pcrelib/pcre_xclass.c' object='libutil_la-pcre_xclass.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libutil_la_CFLAGS) $(CFLAGS) -c -o libutil_la-pcre_xclass.lo `test -f 'pcrelib/pcre_xclass.c' || echo '$(srcdir)/'`pcrelib/pcre_xclass.c
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
mkid -fID $$unique
tags: TAGS
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
set x; \
here=`pwd`; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: CTAGS
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
check-am: all-am
check: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile $(LTLIBRARIES) $(HEADERS)
installdirs:
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
clean: clean-am
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am:
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am:
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am:
.MAKE: all check install install-am install-strip
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
clean-libtool clean-noinstLTLIBRARIES ctags distclean \
distclean-compile distclean-generic distclean-libtool \
distclean-tags distdir dvi dvi-am html html-am info info-am \
install install-am install-data install-data-am install-dvi \
install-dvi-am install-exec install-exec-am install-html \
install-html-am install-info install-info-am install-man \
install-pdf install-pdf-am install-ps install-ps-am \
install-strip installcheck installcheck-am installdirs \
maintainer-clean maintainer-clean-generic mostlyclean \
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
pdf pdf-am ps ps-am tags uninstall uninstall-am
getdate.c: getdate.y
@$(GEN) $(YACC) -o getdate.c $(top_srcdir)/libsrc/util/getdate.y
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
|