Index: Makefile
===================================================================
--- Makefile (nonexistent)
+++ Makefile (revision 5)
@@ -0,0 +1,58 @@
+
+COMPONENT_TARGETS = $(HARDWARE_NOARCH)
+
+
+include ../../../../build-system/constants.mk
+
+
+url = $(DOWNLOAD_SERVER)/sources/packages/l/judy
+
+versions = 1.0.5
+pkgname = judy
+suffix = tar.gz
+
+tarballs = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
+sha1s = $(addsuffix .sha1sum, $(tarballs))
+
+patches = $(CURDIR)/patches/judy-1.0.5-build-cc.patch
+patches += $(CURDIR)/patches/judy-1.0.5-make-doc.patch
+
+.NOTPARALLEL: $(patches)
+
+
+BUILD_TARGETS = $(tarballs) $(sha1s) $(patches)
+
+
+include ../../../../build-system/core.mk
+
+
+.PHONY: download_clean
+
+
+$(tarballs):
+ @echo -e "\n======= Downloading source tarballs =======\n" ; \
+ for tarball in $(tarballs) ; do \
+ echo "$(url)/$$tarball" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & \
+ done ; wait
+
+$(sha1s): $(tarballs)
+ @for sha in $@ ; do \
+ echo -e "\n======= Downloading '$$sha' signature =======\n" ; \
+ echo "$(url)/$$sha" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & wait %1 ; \
+ touch $$sha ; \
+ echo -e "\n======= Check the '$$sha' sha1sum =======\n" ; \
+ sha1sum --check $$sha ; ret="$$?" ; \
+ if [ "$$ret" == "1" ]; then \
+ echo -e "\n======= ERROR: Bad '$$sha' sha1sum =======\n" ; \
+ exit 1 ; \
+ fi ; \
+ done
+
+$(patches): $(sha1s)
+ @echo -e "\n======= Create Patches =======\n" ; \
+ ( cd create-1.0.5-build-cc-patch ; ./create.patch.sh ) ; \
+ ( cd create-1.0.5-make-doc-patch ; ./create.patch.sh ) ; \
+ echo -e "\n"
+
+download_clean:
+ @rm -f $(tarballs) $(sha1s) $(patches)
Index: create-1.0.5-build-cc-patch/create.patch.sh
===================================================================
--- create-1.0.5-build-cc-patch/create.patch.sh (nonexistent)
+++ create-1.0.5-build-cc-patch/create.patch.sh (revision 5)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+VERSION=1.0.5
+
+tar --files-from=file.list -xzvf ../judy-$VERSION.tar.gz
+mv judy-$VERSION judy-$VERSION-orig
+
+cp -rf ./judy-$VERSION-new ./judy-$VERSION
+
+diff --unified -Nr judy-$VERSION-orig judy-$VERSION > judy-$VERSION-build-cc.patch
+
+mv judy-$VERSION-build-cc.patch ../patches
+
+rm -rf ./judy-$VERSION
+rm -rf ./judy-$VERSION-orig
Property changes on: create-1.0.5-build-cc-patch/create.patch.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: create-1.0.5-build-cc-patch/file.list
===================================================================
--- create-1.0.5-build-cc-patch/file.list (nonexistent)
+++ create-1.0.5-build-cc-patch/file.list (revision 5)
@@ -0,0 +1,4 @@
+judy-1.0.5/src/Judy1/Makefile.am
+judy-1.0.5/src/Judy1/Makefile.in
+judy-1.0.5/src/JudyL/Makefile.am
+judy-1.0.5/src/JudyL/Makefile.in
Index: create-1.0.5-build-cc-patch/judy-1.0.5-new/src/Judy1/Makefile.am
===================================================================
--- create-1.0.5-build-cc-patch/judy-1.0.5-new/src/Judy1/Makefile.am (nonexistent)
+++ create-1.0.5-build-cc-patch/judy-1.0.5-new/src/Judy1/Makefile.am (revision 5)
@@ -0,0 +1,114 @@
+INCLUDES = -I. -I.. -I../JudyCommon/
+AM_CFLAGS = -DJUDY1 @WARN_CFLAGS@
+
+noinst_LTLIBRARIES = libJudy1.la libnext.la libprev.la libcount.la libinline.la
+
+libJudy1_la_SOURCES = Judy1Test.c Judy1Tables.c Judy1Set.c Judy1SetArray.c Judy1Unset.c Judy1Cascade.c Judy1Count.c Judy1CreateBranch.c Judy1Decascade.c Judy1First.c Judy1FreeArray.c Judy1InsertBranch.c Judy1MallocIF.c Judy1MemActive.c Judy1MemUsed.c
+
+libnext_la_SOURCES = Judy1Next.c Judy1NextEmpty.c
+libnext_la_CFLAGS = $(AM_CFLAGS) -DJUDYNEXT
+
+libprev_la_SOURCES = Judy1Prev.c Judy1PrevEmpty.c
+libprev_la_CFLAGS = $(AM_CFLAGS) -DJUDYPREV
+
+libcount_la_SOURCES = Judy1ByCount.c
+libcount_la_CFLAGS = $(AM_CFLAGS) -DNOSMARTJBB -DNOSMARTJBU -DNOSMARTJLB
+
+libinline_la_SOURCES = j__udy1Test.c
+libinline_la_CFLAGS = $(AM_CFLAGS) -DJUDYGETINLINE
+
+Judy1Tables.c: Judy1TablesGen.c
+ $(BUILD_CC) $(INCLUDES) $(AM_CFLAGS) $(BUILD_CC_CFLAGS) -o Judy1TablesGen Judy1TablesGen.c; ./Judy1TablesGen
+
+Judy1ByCount.c:../JudyCommon/JudyByCount.c
+ cp -f ../JudyCommon/JudyByCount.c Judy1ByCount.c
+
+Judy1Cascade.c:../JudyCommon/JudyCascade.c
+ cp -f ../JudyCommon/JudyCascade.c Judy1Cascade.c
+
+Judy1Count.c:../JudyCommon/JudyCount.c
+ cp -f ../JudyCommon/JudyCount.c Judy1Count.c
+
+Judy1CreateBranch.c:../JudyCommon/JudyCreateBranch.c
+ cp -f ../JudyCommon/JudyCreateBranch.c Judy1CreateBranch.c
+
+Judy1Decascade.c:../JudyCommon/JudyDecascade.c
+ cp -f ../JudyCommon/JudyDecascade.c Judy1Decascade.c
+
+Judy1Unset.c:../JudyCommon/JudyDel.c
+ cp -f ../JudyCommon/JudyDel.c Judy1Unset.c
+
+Judy1First.c:../JudyCommon/JudyFirst.c
+ cp -f ../JudyCommon/JudyFirst.c Judy1First.c
+
+Judy1FreeArray.c:../JudyCommon/JudyFreeArray.c
+ cp -f ../JudyCommon/JudyFreeArray.c Judy1FreeArray.c
+
+Judy1Test.c:../JudyCommon/JudyGet.c
+ cp -f ../JudyCommon/JudyGet.c Judy1Test.c
+
+j__udy1Test.c:../JudyCommon/JudyGet.c
+ cp -f ../JudyCommon/JudyGet.c j__udy1Test.c
+
+Judy1SetArray.c:../JudyCommon/JudyInsArray.c
+ cp -f ../JudyCommon/JudyInsArray.c Judy1SetArray.c
+
+Judy1Set.c:../JudyCommon/JudyIns.c
+ cp -f ../JudyCommon/JudyIns.c Judy1Set.c
+
+Judy1InsertBranch.c:../JudyCommon/JudyInsertBranch.c
+ cp -f ../JudyCommon/JudyInsertBranch.c Judy1InsertBranch.c
+
+Judy1MallocIF.c:../JudyCommon/JudyMallocIF.c
+ cp -f ../JudyCommon/JudyMallocIF.c Judy1MallocIF.c
+
+Judy1MemActive.c:../JudyCommon/JudyMemActive.c
+ cp -f ../JudyCommon/JudyMemActive.c Judy1MemActive.c
+
+Judy1MemUsed.c:../JudyCommon/JudyMemUsed.c
+ cp -f ../JudyCommon/JudyMemUsed.c Judy1MemUsed.c
+
+Judy1Next.c:../JudyCommon/JudyPrevNext.c
+ cp -f ../JudyCommon/JudyPrevNext.c Judy1Next.c
+
+Judy1Prev.c:../JudyCommon/JudyPrevNext.c
+ cp -f ../JudyCommon/JudyPrevNext.c Judy1Prev.c
+
+Judy1NextEmpty.c:../JudyCommon/JudyPrevNextEmpty.c
+ cp -f ../JudyCommon/JudyPrevNextEmpty.c Judy1NextEmpty.c
+
+Judy1PrevEmpty.c:../JudyCommon/JudyPrevNextEmpty.c
+ cp -f ../JudyCommon/JudyPrevNextEmpty.c Judy1PrevEmpty.c
+
+Judy1TablesGen.c:../JudyCommon/JudyTables.c
+ cp -f ../JudyCommon/JudyTables.c Judy1TablesGen.c
+
+DISTCLEANFILES = .deps Makefile
+
+CLEANFILES = Judy1ByCount.c \
+ Judy1Cascade.c \
+ Judy1Count.c \
+ Judy1CreateBranch.c \
+ Judy1Decascade.c \
+ Judy1Unset.c \
+ Judy1First.c \
+ Judy1FreeArray.c \
+ Judy1Test.c \
+ j__udy1Test.c \
+ Judy1SetArray.c \
+ Judy1Set.c \
+ Judy1InsertBranch.c \
+ Judy1MallocIF.c \
+ Judy1MemActive.c \
+ Judy1MemUsed.c \
+ Judy1Next.c \
+ Judy1Prev.c \
+ Judy1NextEmpty.c \
+ Judy1PrevEmpty.c \
+ Judy1TablesGen.c \
+ Judy1Tables.c \
+ .libs \
+ Judy1TablesGen \
+ *.o \
+ *.lo \
+ *.la
Index: create-1.0.5-build-cc-patch/judy-1.0.5-new/src/Judy1/Makefile.in
===================================================================
--- create-1.0.5-build-cc-patch/judy-1.0.5-new/src/Judy1/Makefile.in (nonexistent)
+++ create-1.0.5-build-cc-patch/judy-1.0.5-new/src/Judy1/Makefile.in (revision 5)
@@ -0,0 +1,629 @@
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005 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@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ../..
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+INSTALL = @INSTALL@
+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 = src/Judy1
+DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ $(ACLOCAL_M4)
+mkinstalldirs = $(install_sh) -d
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES =
+LTLIBRARIES = $(noinst_LTLIBRARIES)
+libJudy1_la_LIBADD =
+am_libJudy1_la_OBJECTS = Judy1Test.lo Judy1Tables.lo Judy1Set.lo \
+ Judy1SetArray.lo Judy1Unset.lo Judy1Cascade.lo Judy1Count.lo \
+ Judy1CreateBranch.lo Judy1Decascade.lo Judy1First.lo \
+ Judy1FreeArray.lo Judy1InsertBranch.lo Judy1MallocIF.lo \
+ Judy1MemActive.lo Judy1MemUsed.lo
+libJudy1_la_OBJECTS = $(am_libJudy1_la_OBJECTS)
+libcount_la_LIBADD =
+am_libcount_la_OBJECTS = libcount_la-Judy1ByCount.lo
+libcount_la_OBJECTS = $(am_libcount_la_OBJECTS)
+libinline_la_LIBADD =
+am_libinline_la_OBJECTS = libinline_la-j__udy1Test.lo
+libinline_la_OBJECTS = $(am_libinline_la_OBJECTS)
+libnext_la_LIBADD =
+am_libnext_la_OBJECTS = libnext_la-Judy1Next.lo \
+ libnext_la-Judy1NextEmpty.lo
+libnext_la_OBJECTS = $(am_libnext_la_OBJECTS)
+libprev_la_LIBADD =
+am_libprev_la_OBJECTS = libprev_la-Judy1Prev.lo \
+ libprev_la-Judy1PrevEmpty.lo
+libprev_la_OBJECTS = $(am_libprev_la_OBJECTS)
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
+depcomp = $(SHELL) $(top_srcdir)/depcomp
+am__depfiles_maybe = depfiles
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
+ $(AM_CFLAGS) $(CFLAGS)
+CCLD = $(CC)
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
+SOURCES = $(libJudy1_la_SOURCES) $(libcount_la_SOURCES) \
+ $(libinline_la_SOURCES) $(libnext_la_SOURCES) \
+ $(libprev_la_SOURCES)
+DIST_SOURCES = $(libJudy1_la_SOURCES) $(libcount_la_SOURCES) \
+ $(libinline_la_SOURCES) $(libnext_la_SOURCES) \
+ $(libprev_la_SOURCES)
+ETAGS = etags
+CTAGS = ctags
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ACLOCAL = @ACLOCAL@
+AMDEP_FALSE = @AMDEP_FALSE@
+AMDEP_TRUE = @AMDEP_TRUE@
+AMTAR = @AMTAR@
+AR = @AR@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+CC = @CC@
+CCDEPMODE = @CCDEPMODE@
+CFLAGS = @CFLAGS@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+ECHO = @ECHO@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+F77 = @F77@
+FFLAGS = @FFLAGS@
+FLAVOR = @FLAVOR@
+GREP = @GREP@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+LD = @LD@
+LDFLAGS = @LDFLAGS@
+LIBOBJS = @LIBOBJS@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
+LTLIBOBJS = @LTLIBOBJS@
+MAINT = @MAINT@
+MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+MAKEINFO = @MAKEINFO@
+OBJEXT = @OBJEXT@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+RANLIB = @RANLIB@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+STRIP = @STRIP@
+VERSION = @VERSION@
+VERSION_INFO = @VERSION_INFO@
+WARN_CFLAGS = @WARN_CFLAGS@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_F77 = @ac_ct_F77@
+am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
+am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
+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@
+datadir = @datadir@
+datarootdir = @datarootdir@
+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@
+htmldir = @htmldir@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localedir = @localedir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+INCLUDES = -I. -I.. -I../JudyCommon/
+AM_CFLAGS = -DJUDY1 @WARN_CFLAGS@
+noinst_LTLIBRARIES = libJudy1.la libnext.la libprev.la libcount.la libinline.la
+libJudy1_la_SOURCES = Judy1Test.c Judy1Tables.c Judy1Set.c Judy1SetArray.c Judy1Unset.c Judy1Cascade.c Judy1Count.c Judy1CreateBranch.c Judy1Decascade.c Judy1First.c Judy1FreeArray.c Judy1InsertBranch.c Judy1MallocIF.c Judy1MemActive.c Judy1MemUsed.c
+libnext_la_SOURCES = Judy1Next.c Judy1NextEmpty.c
+libnext_la_CFLAGS = $(AM_CFLAGS) -DJUDYNEXT
+libprev_la_SOURCES = Judy1Prev.c Judy1PrevEmpty.c
+libprev_la_CFLAGS = $(AM_CFLAGS) -DJUDYPREV
+libcount_la_SOURCES = Judy1ByCount.c
+libcount_la_CFLAGS = $(AM_CFLAGS) -DNOSMARTJBB -DNOSMARTJBU -DNOSMARTJLB
+libinline_la_SOURCES = j__udy1Test.c
+libinline_la_CFLAGS = $(AM_CFLAGS) -DJUDYGETINLINE
+DISTCLEANFILES = .deps Makefile
+CLEANFILES = Judy1ByCount.c \
+ Judy1Cascade.c \
+ Judy1Count.c \
+ Judy1CreateBranch.c \
+ Judy1Decascade.c \
+ Judy1Unset.c \
+ Judy1First.c \
+ Judy1FreeArray.c \
+ Judy1Test.c \
+ j__udy1Test.c \
+ Judy1SetArray.c \
+ Judy1Set.c \
+ Judy1InsertBranch.c \
+ Judy1MallocIF.c \
+ Judy1MemActive.c \
+ Judy1MemUsed.c \
+ Judy1Next.c \
+ Judy1Prev.c \
+ Judy1NextEmpty.c \
+ Judy1PrevEmpty.c \
+ Judy1TablesGen.c \
+ Judy1Tables.c \
+ .libs \
+ Judy1TablesGen \
+ *.o \
+ *.lo \
+ *.la
+
+all: 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 \
+ && exit 0; \
+ exit 1;; \
+ esac; \
+ done; \
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Judy1/Makefile'; \
+ cd $(top_srcdir) && \
+ $(AUTOMAKE) --gnu src/Judy1/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
+
+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
+libJudy1.la: $(libJudy1_la_OBJECTS) $(libJudy1_la_DEPENDENCIES)
+ $(LINK) $(libJudy1_la_LDFLAGS) $(libJudy1_la_OBJECTS) $(libJudy1_la_LIBADD) $(LIBS)
+libcount.la: $(libcount_la_OBJECTS) $(libcount_la_DEPENDENCIES)
+ $(LINK) $(libcount_la_LDFLAGS) $(libcount_la_OBJECTS) $(libcount_la_LIBADD) $(LIBS)
+libinline.la: $(libinline_la_OBJECTS) $(libinline_la_DEPENDENCIES)
+ $(LINK) $(libinline_la_LDFLAGS) $(libinline_la_OBJECTS) $(libinline_la_LIBADD) $(LIBS)
+libnext.la: $(libnext_la_OBJECTS) $(libnext_la_DEPENDENCIES)
+ $(LINK) $(libnext_la_LDFLAGS) $(libnext_la_OBJECTS) $(libnext_la_LIBADD) $(LIBS)
+libprev.la: $(libprev_la_OBJECTS) $(libprev_la_DEPENDENCIES)
+ $(LINK) $(libprev_la_LDFLAGS) $(libprev_la_OBJECTS) $(libprev_la_LIBADD) $(LIBS)
+
+mostlyclean-compile:
+ -rm -f *.$(OBJEXT)
+
+distclean-compile:
+ -rm -f *.tab.c
+
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1Cascade.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1Count.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1CreateBranch.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1Decascade.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1First.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1FreeArray.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1InsertBranch.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1MallocIF.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1MemActive.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1MemUsed.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1Set.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1SetArray.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1Tables.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1Test.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Judy1Unset.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcount_la-Judy1ByCount.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libinline_la-j__udy1Test.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libnext_la-Judy1Next.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libnext_la-Judy1NextEmpty.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libprev_la-Judy1Prev.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libprev_la-Judy1PrevEmpty.Plo@am__quote@
+
+.c.o:
+@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
+@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@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
+@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@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
+@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 $@ $<
+
+libcount_la-Judy1ByCount.lo: Judy1ByCount.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcount_la_CFLAGS) $(CFLAGS) -MT libcount_la-Judy1ByCount.lo -MD -MP -MF "$(DEPDIR)/libcount_la-Judy1ByCount.Tpo" -c -o libcount_la-Judy1ByCount.lo `test -f 'Judy1ByCount.c' || echo '$(srcdir)/'`Judy1ByCount.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcount_la-Judy1ByCount.Tpo" "$(DEPDIR)/libcount_la-Judy1ByCount.Plo"; else rm -f "$(DEPDIR)/libcount_la-Judy1ByCount.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='Judy1ByCount.c' object='libcount_la-Judy1ByCount.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcount_la_CFLAGS) $(CFLAGS) -c -o libcount_la-Judy1ByCount.lo `test -f 'Judy1ByCount.c' || echo '$(srcdir)/'`Judy1ByCount.c
+
+libinline_la-j__udy1Test.lo: j__udy1Test.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinline_la_CFLAGS) $(CFLAGS) -MT libinline_la-j__udy1Test.lo -MD -MP -MF "$(DEPDIR)/libinline_la-j__udy1Test.Tpo" -c -o libinline_la-j__udy1Test.lo `test -f 'j__udy1Test.c' || echo '$(srcdir)/'`j__udy1Test.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libinline_la-j__udy1Test.Tpo" "$(DEPDIR)/libinline_la-j__udy1Test.Plo"; else rm -f "$(DEPDIR)/libinline_la-j__udy1Test.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='j__udy1Test.c' object='libinline_la-j__udy1Test.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinline_la_CFLAGS) $(CFLAGS) -c -o libinline_la-j__udy1Test.lo `test -f 'j__udy1Test.c' || echo '$(srcdir)/'`j__udy1Test.c
+
+libnext_la-Judy1Next.lo: Judy1Next.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnext_la_CFLAGS) $(CFLAGS) -MT libnext_la-Judy1Next.lo -MD -MP -MF "$(DEPDIR)/libnext_la-Judy1Next.Tpo" -c -o libnext_la-Judy1Next.lo `test -f 'Judy1Next.c' || echo '$(srcdir)/'`Judy1Next.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libnext_la-Judy1Next.Tpo" "$(DEPDIR)/libnext_la-Judy1Next.Plo"; else rm -f "$(DEPDIR)/libnext_la-Judy1Next.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='Judy1Next.c' object='libnext_la-Judy1Next.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnext_la_CFLAGS) $(CFLAGS) -c -o libnext_la-Judy1Next.lo `test -f 'Judy1Next.c' || echo '$(srcdir)/'`Judy1Next.c
+
+libnext_la-Judy1NextEmpty.lo: Judy1NextEmpty.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnext_la_CFLAGS) $(CFLAGS) -MT libnext_la-Judy1NextEmpty.lo -MD -MP -MF "$(DEPDIR)/libnext_la-Judy1NextEmpty.Tpo" -c -o libnext_la-Judy1NextEmpty.lo `test -f 'Judy1NextEmpty.c' || echo '$(srcdir)/'`Judy1NextEmpty.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libnext_la-Judy1NextEmpty.Tpo" "$(DEPDIR)/libnext_la-Judy1NextEmpty.Plo"; else rm -f "$(DEPDIR)/libnext_la-Judy1NextEmpty.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='Judy1NextEmpty.c' object='libnext_la-Judy1NextEmpty.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnext_la_CFLAGS) $(CFLAGS) -c -o libnext_la-Judy1NextEmpty.lo `test -f 'Judy1NextEmpty.c' || echo '$(srcdir)/'`Judy1NextEmpty.c
+
+libprev_la-Judy1Prev.lo: Judy1Prev.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libprev_la_CFLAGS) $(CFLAGS) -MT libprev_la-Judy1Prev.lo -MD -MP -MF "$(DEPDIR)/libprev_la-Judy1Prev.Tpo" -c -o libprev_la-Judy1Prev.lo `test -f 'Judy1Prev.c' || echo '$(srcdir)/'`Judy1Prev.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libprev_la-Judy1Prev.Tpo" "$(DEPDIR)/libprev_la-Judy1Prev.Plo"; else rm -f "$(DEPDIR)/libprev_la-Judy1Prev.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='Judy1Prev.c' object='libprev_la-Judy1Prev.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libprev_la_CFLAGS) $(CFLAGS) -c -o libprev_la-Judy1Prev.lo `test -f 'Judy1Prev.c' || echo '$(srcdir)/'`Judy1Prev.c
+
+libprev_la-Judy1PrevEmpty.lo: Judy1PrevEmpty.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libprev_la_CFLAGS) $(CFLAGS) -MT libprev_la-Judy1PrevEmpty.lo -MD -MP -MF "$(DEPDIR)/libprev_la-Judy1PrevEmpty.Tpo" -c -o libprev_la-Judy1PrevEmpty.lo `test -f 'Judy1PrevEmpty.c' || echo '$(srcdir)/'`Judy1PrevEmpty.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libprev_la-Judy1PrevEmpty.Tpo" "$(DEPDIR)/libprev_la-Judy1PrevEmpty.Plo"; else rm -f "$(DEPDIR)/libprev_la-Judy1PrevEmpty.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='Judy1PrevEmpty.c' object='libprev_la-Judy1PrevEmpty.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libprev_la_CFLAGS) $(CFLAGS) -c -o libprev_la-Judy1PrevEmpty.lo `test -f 'Judy1PrevEmpty.c' || echo '$(srcdir)/'`Judy1PrevEmpty.c
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+distclean-libtool:
+ -rm -f libtool
+uninstall-info-am:
+
+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; } \
+ END { for (i in files) print i; }'`; \
+ mkid -fID $$unique
+tags: TAGS
+
+TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
+ $(TAGS_FILES) $(LISP)
+ tags=; \
+ 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; } \
+ END { for (i in files) print i; }'`; \
+ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
+ test -n "$$unique" || unique=$$empty_fix; \
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ $$tags $$unique; \
+ fi
+ctags: CTAGS
+CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
+ $(TAGS_FILES) $(LISP)
+ tags=; \
+ 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; } \
+ END { for (i in files) print i; }'`; \
+ test -z "$(CTAGS_ARGS)$$tags$$unique" \
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+ $$tags $$unique
+
+GTAGS:
+ here=`$(am__cd) $(top_builddir) && pwd` \
+ && 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)'; for file in $$list; do \
+ case $$file in \
+ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+ esac; \
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+ dir="/$$dir"; \
+ $(mkdir_p) "$(distdir)$$dir"; \
+ else \
+ dir=''; \
+ fi; \
+ if test -d $$d/$$file; then \
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+ fi; \
+ cp -pR $$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: check-am
+all-am: Makefile $(LTLIBRARIES)
+installdirs:
+install: 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:
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+ -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+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-libtool distclean-tags
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+info: info-am
+
+info-am:
+
+install-data-am:
+
+install-exec-am:
+
+install-info: install-info-am
+
+install-man:
+
+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: uninstall-info-am
+
+.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-exec \
+ install-exec-am install-info install-info-am install-man \
+ 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 \
+ uninstall-info-am
+
+
+Judy1Tables.c: Judy1TablesGen.c
+ $(BUILD_CC) $(INCLUDES) $(AM_CFLAGS) $(BUILD_CC_CFLAGS) -o Judy1TablesGen Judy1TablesGen.c; ./Judy1TablesGen
+
+Judy1ByCount.c:../JudyCommon/JudyByCount.c
+ cp -f ../JudyCommon/JudyByCount.c Judy1ByCount.c
+
+Judy1Cascade.c:../JudyCommon/JudyCascade.c
+ cp -f ../JudyCommon/JudyCascade.c Judy1Cascade.c
+
+Judy1Count.c:../JudyCommon/JudyCount.c
+ cp -f ../JudyCommon/JudyCount.c Judy1Count.c
+
+Judy1CreateBranch.c:../JudyCommon/JudyCreateBranch.c
+ cp -f ../JudyCommon/JudyCreateBranch.c Judy1CreateBranch.c
+
+Judy1Decascade.c:../JudyCommon/JudyDecascade.c
+ cp -f ../JudyCommon/JudyDecascade.c Judy1Decascade.c
+
+Judy1Unset.c:../JudyCommon/JudyDel.c
+ cp -f ../JudyCommon/JudyDel.c Judy1Unset.c
+
+Judy1First.c:../JudyCommon/JudyFirst.c
+ cp -f ../JudyCommon/JudyFirst.c Judy1First.c
+
+Judy1FreeArray.c:../JudyCommon/JudyFreeArray.c
+ cp -f ../JudyCommon/JudyFreeArray.c Judy1FreeArray.c
+
+Judy1Test.c:../JudyCommon/JudyGet.c
+ cp -f ../JudyCommon/JudyGet.c Judy1Test.c
+
+j__udy1Test.c:../JudyCommon/JudyGet.c
+ cp -f ../JudyCommon/JudyGet.c j__udy1Test.c
+
+Judy1SetArray.c:../JudyCommon/JudyInsArray.c
+ cp -f ../JudyCommon/JudyInsArray.c Judy1SetArray.c
+
+Judy1Set.c:../JudyCommon/JudyIns.c
+ cp -f ../JudyCommon/JudyIns.c Judy1Set.c
+
+Judy1InsertBranch.c:../JudyCommon/JudyInsertBranch.c
+ cp -f ../JudyCommon/JudyInsertBranch.c Judy1InsertBranch.c
+
+Judy1MallocIF.c:../JudyCommon/JudyMallocIF.c
+ cp -f ../JudyCommon/JudyMallocIF.c Judy1MallocIF.c
+
+Judy1MemActive.c:../JudyCommon/JudyMemActive.c
+ cp -f ../JudyCommon/JudyMemActive.c Judy1MemActive.c
+
+Judy1MemUsed.c:../JudyCommon/JudyMemUsed.c
+ cp -f ../JudyCommon/JudyMemUsed.c Judy1MemUsed.c
+
+Judy1Next.c:../JudyCommon/JudyPrevNext.c
+ cp -f ../JudyCommon/JudyPrevNext.c Judy1Next.c
+
+Judy1Prev.c:../JudyCommon/JudyPrevNext.c
+ cp -f ../JudyCommon/JudyPrevNext.c Judy1Prev.c
+
+Judy1NextEmpty.c:../JudyCommon/JudyPrevNextEmpty.c
+ cp -f ../JudyCommon/JudyPrevNextEmpty.c Judy1NextEmpty.c
+
+Judy1PrevEmpty.c:../JudyCommon/JudyPrevNextEmpty.c
+ cp -f ../JudyCommon/JudyPrevNextEmpty.c Judy1PrevEmpty.c
+
+Judy1TablesGen.c:../JudyCommon/JudyTables.c
+ cp -f ../JudyCommon/JudyTables.c Judy1TablesGen.c
+# 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:
Index: create-1.0.5-build-cc-patch/judy-1.0.5-new/src/Judy1
===================================================================
--- create-1.0.5-build-cc-patch/judy-1.0.5-new/src/Judy1 (nonexistent)
+++ create-1.0.5-build-cc-patch/judy-1.0.5-new/src/Judy1 (revision 5)
Property changes on: create-1.0.5-build-cc-patch/judy-1.0.5-new/src/Judy1
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create-1.0.5-build-cc-patch/judy-1.0.5-new/src/JudyL/Makefile.am
===================================================================
--- create-1.0.5-build-cc-patch/judy-1.0.5-new/src/JudyL/Makefile.am (nonexistent)
+++ create-1.0.5-build-cc-patch/judy-1.0.5-new/src/JudyL/Makefile.am (revision 5)
@@ -0,0 +1,114 @@
+INCLUDES = -I. -I.. -I../JudyCommon/
+AM_CFLAGS = -DJUDYL @WARN_CFLAGS@
+
+noinst_LTLIBRARIES = libJudyL.la libnext.la libprev.la libcount.la libinline.la
+
+libJudyL_la_SOURCES = JudyLCascade.c JudyLTables.c JudyLCount.c JudyLCreateBranch.c JudyLDecascade.c JudyLDel.c JudyLFirst.c JudyLFreeArray.c JudyLGet.c JudyLInsArray.c JudyLIns.c JudyLInsertBranch.c JudyLMallocIF.c JudyLMemActive.c JudyLMemUsed.c
+
+libnext_la_SOURCES = JudyLNext.c JudyLNextEmpty.c
+libnext_la_CFLAGS = $(AM_CFLAGS) -DJUDYNEXT
+
+libprev_la_SOURCES = JudyLPrev.c JudyLPrevEmpty.c
+libprev_la_CFLAGS = $(AM_CFLAGS) -DJUDYPREV
+
+libcount_la_SOURCES = JudyLByCount.c
+libcount_la_CFLAGS = $(AM_CFLAGS) -DNOSMARTJBB -DNOSMARTJBU -DNOSMARTJLB
+
+libinline_la_SOURCES = j__udyLGet.c
+libinline_la_CFLAGS = $(AM_CFLAGS) -DJUDYGETINLINE
+
+JudyLTables.c: JudyLTablesGen.c
+ $(BUILD_CC) $(INCLUDES) $(AM_CFLAGS) $(BUILD_CC_CFLAGS) -o JudyLTablesGen JudyLTablesGen.c; ./JudyLTablesGen
+
+JudyLByCount.c: ../JudyCommon/JudyByCount.c
+ cp -f ../JudyCommon/JudyByCount.c JudyLByCount.c
+
+JudyLCascade.c:../JudyCommon/JudyCascade.c
+ cp -f ../JudyCommon/JudyCascade.c JudyLCascade.c
+
+JudyLCount.c:../JudyCommon/JudyCount.c
+ cp -f ../JudyCommon/JudyCount.c JudyLCount.c
+
+JudyLCreateBranch.c:../JudyCommon/JudyCreateBranch.c
+ cp -f ../JudyCommon/JudyCreateBranch.c JudyLCreateBranch.c
+
+JudyLDecascade.c:../JudyCommon/JudyDecascade.c
+ cp -f ../JudyCommon/JudyDecascade.c JudyLDecascade.c
+
+JudyLDel.c:../JudyCommon/JudyDel.c
+ cp -f ../JudyCommon/JudyDel.c JudyLDel.c
+
+JudyLFirst.c:../JudyCommon/JudyFirst.c
+ cp -f ../JudyCommon/JudyFirst.c JudyLFirst.c
+
+JudyLFreeArray.c:../JudyCommon/JudyFreeArray.c
+ cp -f ../JudyCommon/JudyFreeArray.c JudyLFreeArray.c
+
+JudyLGet.c:../JudyCommon/JudyGet.c
+ cp -f ../JudyCommon/JudyGet.c JudyLGet.c
+
+j__udyLGet.c:../JudyCommon/JudyGet.c
+ cp -f ../JudyCommon/JudyGet.c j__udyLGet.c
+
+JudyLInsArray.c:../JudyCommon/JudyInsArray.c
+ cp -f ../JudyCommon/JudyInsArray.c JudyLInsArray.c
+
+JudyLIns.c:../JudyCommon/JudyIns.c
+ cp -f ../JudyCommon/JudyIns.c JudyLIns.c
+
+JudyLInsertBranch.c:../JudyCommon/JudyInsertBranch.c
+ cp -f ../JudyCommon/JudyInsertBranch.c JudyLInsertBranch.c
+
+JudyLMallocIF.c:../JudyCommon/JudyMallocIF.c
+ cp -f ../JudyCommon/JudyMallocIF.c JudyLMallocIF.c
+
+JudyLMemActive.c:../JudyCommon/JudyMemActive.c
+ cp -f ../JudyCommon/JudyMemActive.c JudyLMemActive.c
+
+JudyLMemUsed.c:../JudyCommon/JudyMemUsed.c
+ cp -f ../JudyCommon/JudyMemUsed.c JudyLMemUsed.c
+
+JudyLNext.c:../JudyCommon/JudyPrevNext.c
+ cp -f ../JudyCommon/JudyPrevNext.c JudyLNext.c
+
+JudyLPrev.c:../JudyCommon/JudyPrevNext.c
+ cp -f ../JudyCommon/JudyPrevNext.c JudyLPrev.c
+
+JudyLNextEmpty.c:../JudyCommon/JudyPrevNextEmpty.c
+ cp -f ../JudyCommon/JudyPrevNextEmpty.c JudyLNextEmpty.c
+
+JudyLPrevEmpty.c:../JudyCommon/JudyPrevNextEmpty.c
+ cp -f ../JudyCommon/JudyPrevNextEmpty.c JudyLPrevEmpty.c
+
+JudyLTablesGen.c:../JudyCommon/JudyTables.c
+ cp -f ../JudyCommon/JudyTables.c JudyLTablesGen.c
+
+DISTCLEANFILES = .deps Makefile
+
+CLEANFILES = JudyLByCount.c \
+ JudyLCascade.c \
+ JudyLCount.c \
+ JudyLCreateBranch.c \
+ JudyLDecascade.c \
+ JudyLDel.c \
+ JudyLFirst.c \
+ JudyLFreeArray.c \
+ JudyLGet.c \
+ j__udyLGet.c \
+ JudyLInsArray.c \
+ JudyLIns.c \
+ JudyLInsertBranch.c \
+ JudyLMallocIF.c \
+ JudyLMemActive.c \
+ JudyLMemUsed.c \
+ JudyLNext.c \
+ JudyLPrev.c \
+ JudyLNextEmpty.c \
+ JudyLPrevEmpty.c \
+ JudyLTablesGen.c \
+ JudyLTables.c \
+ JudyLTablesGen \
+ .libs \
+ *.o \
+ *.lo \
+ *.la
Index: create-1.0.5-build-cc-patch/judy-1.0.5-new/src/JudyL/Makefile.in
===================================================================
--- create-1.0.5-build-cc-patch/judy-1.0.5-new/src/JudyL/Makefile.in (nonexistent)
+++ create-1.0.5-build-cc-patch/judy-1.0.5-new/src/JudyL/Makefile.in (revision 5)
@@ -0,0 +1,629 @@
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005 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@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ../..
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+INSTALL = @INSTALL@
+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 = src/JudyL
+DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ $(ACLOCAL_M4)
+mkinstalldirs = $(install_sh) -d
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES =
+LTLIBRARIES = $(noinst_LTLIBRARIES)
+libJudyL_la_LIBADD =
+am_libJudyL_la_OBJECTS = JudyLCascade.lo JudyLTables.lo JudyLCount.lo \
+ JudyLCreateBranch.lo JudyLDecascade.lo JudyLDel.lo \
+ JudyLFirst.lo JudyLFreeArray.lo JudyLGet.lo JudyLInsArray.lo \
+ JudyLIns.lo JudyLInsertBranch.lo JudyLMallocIF.lo \
+ JudyLMemActive.lo JudyLMemUsed.lo
+libJudyL_la_OBJECTS = $(am_libJudyL_la_OBJECTS)
+libcount_la_LIBADD =
+am_libcount_la_OBJECTS = libcount_la-JudyLByCount.lo
+libcount_la_OBJECTS = $(am_libcount_la_OBJECTS)
+libinline_la_LIBADD =
+am_libinline_la_OBJECTS = libinline_la-j__udyLGet.lo
+libinline_la_OBJECTS = $(am_libinline_la_OBJECTS)
+libnext_la_LIBADD =
+am_libnext_la_OBJECTS = libnext_la-JudyLNext.lo \
+ libnext_la-JudyLNextEmpty.lo
+libnext_la_OBJECTS = $(am_libnext_la_OBJECTS)
+libprev_la_LIBADD =
+am_libprev_la_OBJECTS = libprev_la-JudyLPrev.lo \
+ libprev_la-JudyLPrevEmpty.lo
+libprev_la_OBJECTS = $(am_libprev_la_OBJECTS)
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
+depcomp = $(SHELL) $(top_srcdir)/depcomp
+am__depfiles_maybe = depfiles
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
+ $(AM_CFLAGS) $(CFLAGS)
+CCLD = $(CC)
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
+SOURCES = $(libJudyL_la_SOURCES) $(libcount_la_SOURCES) \
+ $(libinline_la_SOURCES) $(libnext_la_SOURCES) \
+ $(libprev_la_SOURCES)
+DIST_SOURCES = $(libJudyL_la_SOURCES) $(libcount_la_SOURCES) \
+ $(libinline_la_SOURCES) $(libnext_la_SOURCES) \
+ $(libprev_la_SOURCES)
+ETAGS = etags
+CTAGS = ctags
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ACLOCAL = @ACLOCAL@
+AMDEP_FALSE = @AMDEP_FALSE@
+AMDEP_TRUE = @AMDEP_TRUE@
+AMTAR = @AMTAR@
+AR = @AR@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+CC = @CC@
+CCDEPMODE = @CCDEPMODE@
+CFLAGS = @CFLAGS@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+ECHO = @ECHO@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+F77 = @F77@
+FFLAGS = @FFLAGS@
+FLAVOR = @FLAVOR@
+GREP = @GREP@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+LD = @LD@
+LDFLAGS = @LDFLAGS@
+LIBOBJS = @LIBOBJS@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
+LTLIBOBJS = @LTLIBOBJS@
+MAINT = @MAINT@
+MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+MAKEINFO = @MAKEINFO@
+OBJEXT = @OBJEXT@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+RANLIB = @RANLIB@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+STRIP = @STRIP@
+VERSION = @VERSION@
+VERSION_INFO = @VERSION_INFO@
+WARN_CFLAGS = @WARN_CFLAGS@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_F77 = @ac_ct_F77@
+am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
+am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
+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@
+datadir = @datadir@
+datarootdir = @datarootdir@
+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@
+htmldir = @htmldir@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localedir = @localedir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+INCLUDES = -I. -I.. -I../JudyCommon/
+AM_CFLAGS = -DJUDYL @WARN_CFLAGS@
+noinst_LTLIBRARIES = libJudyL.la libnext.la libprev.la libcount.la libinline.la
+libJudyL_la_SOURCES = JudyLCascade.c JudyLTables.c JudyLCount.c JudyLCreateBranch.c JudyLDecascade.c JudyLDel.c JudyLFirst.c JudyLFreeArray.c JudyLGet.c JudyLInsArray.c JudyLIns.c JudyLInsertBranch.c JudyLMallocIF.c JudyLMemActive.c JudyLMemUsed.c
+libnext_la_SOURCES = JudyLNext.c JudyLNextEmpty.c
+libnext_la_CFLAGS = $(AM_CFLAGS) -DJUDYNEXT
+libprev_la_SOURCES = JudyLPrev.c JudyLPrevEmpty.c
+libprev_la_CFLAGS = $(AM_CFLAGS) -DJUDYPREV
+libcount_la_SOURCES = JudyLByCount.c
+libcount_la_CFLAGS = $(AM_CFLAGS) -DNOSMARTJBB -DNOSMARTJBU -DNOSMARTJLB
+libinline_la_SOURCES = j__udyLGet.c
+libinline_la_CFLAGS = $(AM_CFLAGS) -DJUDYGETINLINE
+DISTCLEANFILES = .deps Makefile
+CLEANFILES = JudyLByCount.c \
+ JudyLCascade.c \
+ JudyLCount.c \
+ JudyLCreateBranch.c \
+ JudyLDecascade.c \
+ JudyLDel.c \
+ JudyLFirst.c \
+ JudyLFreeArray.c \
+ JudyLGet.c \
+ j__udyLGet.c \
+ JudyLInsArray.c \
+ JudyLIns.c \
+ JudyLInsertBranch.c \
+ JudyLMallocIF.c \
+ JudyLMemActive.c \
+ JudyLMemUsed.c \
+ JudyLNext.c \
+ JudyLPrev.c \
+ JudyLNextEmpty.c \
+ JudyLPrevEmpty.c \
+ JudyLTablesGen.c \
+ JudyLTables.c \
+ JudyLTablesGen \
+ .libs \
+ *.o \
+ *.lo \
+ *.la
+
+all: 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 \
+ && exit 0; \
+ exit 1;; \
+ esac; \
+ done; \
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/JudyL/Makefile'; \
+ cd $(top_srcdir) && \
+ $(AUTOMAKE) --gnu src/JudyL/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
+
+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
+libJudyL.la: $(libJudyL_la_OBJECTS) $(libJudyL_la_DEPENDENCIES)
+ $(LINK) $(libJudyL_la_LDFLAGS) $(libJudyL_la_OBJECTS) $(libJudyL_la_LIBADD) $(LIBS)
+libcount.la: $(libcount_la_OBJECTS) $(libcount_la_DEPENDENCIES)
+ $(LINK) $(libcount_la_LDFLAGS) $(libcount_la_OBJECTS) $(libcount_la_LIBADD) $(LIBS)
+libinline.la: $(libinline_la_OBJECTS) $(libinline_la_DEPENDENCIES)
+ $(LINK) $(libinline_la_LDFLAGS) $(libinline_la_OBJECTS) $(libinline_la_LIBADD) $(LIBS)
+libnext.la: $(libnext_la_OBJECTS) $(libnext_la_DEPENDENCIES)
+ $(LINK) $(libnext_la_LDFLAGS) $(libnext_la_OBJECTS) $(libnext_la_LIBADD) $(LIBS)
+libprev.la: $(libprev_la_OBJECTS) $(libprev_la_DEPENDENCIES)
+ $(LINK) $(libprev_la_LDFLAGS) $(libprev_la_OBJECTS) $(libprev_la_LIBADD) $(LIBS)
+
+mostlyclean-compile:
+ -rm -f *.$(OBJEXT)
+
+distclean-compile:
+ -rm -f *.tab.c
+
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLCascade.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLCount.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLCreateBranch.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLDecascade.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLDel.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLFirst.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLFreeArray.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLGet.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLIns.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLInsArray.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLInsertBranch.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLMallocIF.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLMemActive.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLMemUsed.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JudyLTables.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcount_la-JudyLByCount.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libinline_la-j__udyLGet.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libnext_la-JudyLNext.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libnext_la-JudyLNextEmpty.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libprev_la-JudyLPrev.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libprev_la-JudyLPrevEmpty.Plo@am__quote@
+
+.c.o:
+@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
+@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@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
+@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@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
+@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 $@ $<
+
+libcount_la-JudyLByCount.lo: JudyLByCount.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcount_la_CFLAGS) $(CFLAGS) -MT libcount_la-JudyLByCount.lo -MD -MP -MF "$(DEPDIR)/libcount_la-JudyLByCount.Tpo" -c -o libcount_la-JudyLByCount.lo `test -f 'JudyLByCount.c' || echo '$(srcdir)/'`JudyLByCount.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcount_la-JudyLByCount.Tpo" "$(DEPDIR)/libcount_la-JudyLByCount.Plo"; else rm -f "$(DEPDIR)/libcount_la-JudyLByCount.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='JudyLByCount.c' object='libcount_la-JudyLByCount.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcount_la_CFLAGS) $(CFLAGS) -c -o libcount_la-JudyLByCount.lo `test -f 'JudyLByCount.c' || echo '$(srcdir)/'`JudyLByCount.c
+
+libinline_la-j__udyLGet.lo: j__udyLGet.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinline_la_CFLAGS) $(CFLAGS) -MT libinline_la-j__udyLGet.lo -MD -MP -MF "$(DEPDIR)/libinline_la-j__udyLGet.Tpo" -c -o libinline_la-j__udyLGet.lo `test -f 'j__udyLGet.c' || echo '$(srcdir)/'`j__udyLGet.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libinline_la-j__udyLGet.Tpo" "$(DEPDIR)/libinline_la-j__udyLGet.Plo"; else rm -f "$(DEPDIR)/libinline_la-j__udyLGet.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='j__udyLGet.c' object='libinline_la-j__udyLGet.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libinline_la_CFLAGS) $(CFLAGS) -c -o libinline_la-j__udyLGet.lo `test -f 'j__udyLGet.c' || echo '$(srcdir)/'`j__udyLGet.c
+
+libnext_la-JudyLNext.lo: JudyLNext.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnext_la_CFLAGS) $(CFLAGS) -MT libnext_la-JudyLNext.lo -MD -MP -MF "$(DEPDIR)/libnext_la-JudyLNext.Tpo" -c -o libnext_la-JudyLNext.lo `test -f 'JudyLNext.c' || echo '$(srcdir)/'`JudyLNext.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libnext_la-JudyLNext.Tpo" "$(DEPDIR)/libnext_la-JudyLNext.Plo"; else rm -f "$(DEPDIR)/libnext_la-JudyLNext.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='JudyLNext.c' object='libnext_la-JudyLNext.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnext_la_CFLAGS) $(CFLAGS) -c -o libnext_la-JudyLNext.lo `test -f 'JudyLNext.c' || echo '$(srcdir)/'`JudyLNext.c
+
+libnext_la-JudyLNextEmpty.lo: JudyLNextEmpty.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnext_la_CFLAGS) $(CFLAGS) -MT libnext_la-JudyLNextEmpty.lo -MD -MP -MF "$(DEPDIR)/libnext_la-JudyLNextEmpty.Tpo" -c -o libnext_la-JudyLNextEmpty.lo `test -f 'JudyLNextEmpty.c' || echo '$(srcdir)/'`JudyLNextEmpty.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libnext_la-JudyLNextEmpty.Tpo" "$(DEPDIR)/libnext_la-JudyLNextEmpty.Plo"; else rm -f "$(DEPDIR)/libnext_la-JudyLNextEmpty.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='JudyLNextEmpty.c' object='libnext_la-JudyLNextEmpty.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnext_la_CFLAGS) $(CFLAGS) -c -o libnext_la-JudyLNextEmpty.lo `test -f 'JudyLNextEmpty.c' || echo '$(srcdir)/'`JudyLNextEmpty.c
+
+libprev_la-JudyLPrev.lo: JudyLPrev.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libprev_la_CFLAGS) $(CFLAGS) -MT libprev_la-JudyLPrev.lo -MD -MP -MF "$(DEPDIR)/libprev_la-JudyLPrev.Tpo" -c -o libprev_la-JudyLPrev.lo `test -f 'JudyLPrev.c' || echo '$(srcdir)/'`JudyLPrev.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libprev_la-JudyLPrev.Tpo" "$(DEPDIR)/libprev_la-JudyLPrev.Plo"; else rm -f "$(DEPDIR)/libprev_la-JudyLPrev.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='JudyLPrev.c' object='libprev_la-JudyLPrev.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libprev_la_CFLAGS) $(CFLAGS) -c -o libprev_la-JudyLPrev.lo `test -f 'JudyLPrev.c' || echo '$(srcdir)/'`JudyLPrev.c
+
+libprev_la-JudyLPrevEmpty.lo: JudyLPrevEmpty.c
+@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libprev_la_CFLAGS) $(CFLAGS) -MT libprev_la-JudyLPrevEmpty.lo -MD -MP -MF "$(DEPDIR)/libprev_la-JudyLPrevEmpty.Tpo" -c -o libprev_la-JudyLPrevEmpty.lo `test -f 'JudyLPrevEmpty.c' || echo '$(srcdir)/'`JudyLPrevEmpty.c; \
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libprev_la-JudyLPrevEmpty.Tpo" "$(DEPDIR)/libprev_la-JudyLPrevEmpty.Plo"; else rm -f "$(DEPDIR)/libprev_la-JudyLPrevEmpty.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='JudyLPrevEmpty.c' object='libprev_la-JudyLPrevEmpty.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libprev_la_CFLAGS) $(CFLAGS) -c -o libprev_la-JudyLPrevEmpty.lo `test -f 'JudyLPrevEmpty.c' || echo '$(srcdir)/'`JudyLPrevEmpty.c
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+distclean-libtool:
+ -rm -f libtool
+uninstall-info-am:
+
+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; } \
+ END { for (i in files) print i; }'`; \
+ mkid -fID $$unique
+tags: TAGS
+
+TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
+ $(TAGS_FILES) $(LISP)
+ tags=; \
+ 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; } \
+ END { for (i in files) print i; }'`; \
+ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
+ test -n "$$unique" || unique=$$empty_fix; \
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ $$tags $$unique; \
+ fi
+ctags: CTAGS
+CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
+ $(TAGS_FILES) $(LISP)
+ tags=; \
+ 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; } \
+ END { for (i in files) print i; }'`; \
+ test -z "$(CTAGS_ARGS)$$tags$$unique" \
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+ $$tags $$unique
+
+GTAGS:
+ here=`$(am__cd) $(top_builddir) && pwd` \
+ && 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)'; for file in $$list; do \
+ case $$file in \
+ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+ esac; \
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+ dir="/$$dir"; \
+ $(mkdir_p) "$(distdir)$$dir"; \
+ else \
+ dir=''; \
+ fi; \
+ if test -d $$d/$$file; then \
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+ fi; \
+ cp -pR $$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: check-am
+all-am: Makefile $(LTLIBRARIES)
+installdirs:
+install: 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:
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+ -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+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-libtool distclean-tags
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+info: info-am
+
+info-am:
+
+install-data-am:
+
+install-exec-am:
+
+install-info: install-info-am
+
+install-man:
+
+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: uninstall-info-am
+
+.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-exec \
+ install-exec-am install-info install-info-am install-man \
+ 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 \
+ uninstall-info-am
+
+
+JudyLTables.c: JudyLTablesGen.c
+ $(BUILD_CC) $(INCLUDES) $(AM_CFLAGS) $(BUILD_CC_CFLAGS) -o JudyLTablesGen JudyLTablesGen.c; ./JudyLTablesGen
+
+JudyLByCount.c: ../JudyCommon/JudyByCount.c
+ cp -f ../JudyCommon/JudyByCount.c JudyLByCount.c
+
+JudyLCascade.c:../JudyCommon/JudyCascade.c
+ cp -f ../JudyCommon/JudyCascade.c JudyLCascade.c
+
+JudyLCount.c:../JudyCommon/JudyCount.c
+ cp -f ../JudyCommon/JudyCount.c JudyLCount.c
+
+JudyLCreateBranch.c:../JudyCommon/JudyCreateBranch.c
+ cp -f ../JudyCommon/JudyCreateBranch.c JudyLCreateBranch.c
+
+JudyLDecascade.c:../JudyCommon/JudyDecascade.c
+ cp -f ../JudyCommon/JudyDecascade.c JudyLDecascade.c
+
+JudyLDel.c:../JudyCommon/JudyDel.c
+ cp -f ../JudyCommon/JudyDel.c JudyLDel.c
+
+JudyLFirst.c:../JudyCommon/JudyFirst.c
+ cp -f ../JudyCommon/JudyFirst.c JudyLFirst.c
+
+JudyLFreeArray.c:../JudyCommon/JudyFreeArray.c
+ cp -f ../JudyCommon/JudyFreeArray.c JudyLFreeArray.c
+
+JudyLGet.c:../JudyCommon/JudyGet.c
+ cp -f ../JudyCommon/JudyGet.c JudyLGet.c
+
+j__udyLGet.c:../JudyCommon/JudyGet.c
+ cp -f ../JudyCommon/JudyGet.c j__udyLGet.c
+
+JudyLInsArray.c:../JudyCommon/JudyInsArray.c
+ cp -f ../JudyCommon/JudyInsArray.c JudyLInsArray.c
+
+JudyLIns.c:../JudyCommon/JudyIns.c
+ cp -f ../JudyCommon/JudyIns.c JudyLIns.c
+
+JudyLInsertBranch.c:../JudyCommon/JudyInsertBranch.c
+ cp -f ../JudyCommon/JudyInsertBranch.c JudyLInsertBranch.c
+
+JudyLMallocIF.c:../JudyCommon/JudyMallocIF.c
+ cp -f ../JudyCommon/JudyMallocIF.c JudyLMallocIF.c
+
+JudyLMemActive.c:../JudyCommon/JudyMemActive.c
+ cp -f ../JudyCommon/JudyMemActive.c JudyLMemActive.c
+
+JudyLMemUsed.c:../JudyCommon/JudyMemUsed.c
+ cp -f ../JudyCommon/JudyMemUsed.c JudyLMemUsed.c
+
+JudyLNext.c:../JudyCommon/JudyPrevNext.c
+ cp -f ../JudyCommon/JudyPrevNext.c JudyLNext.c
+
+JudyLPrev.c:../JudyCommon/JudyPrevNext.c
+ cp -f ../JudyCommon/JudyPrevNext.c JudyLPrev.c
+
+JudyLNextEmpty.c:../JudyCommon/JudyPrevNextEmpty.c
+ cp -f ../JudyCommon/JudyPrevNextEmpty.c JudyLNextEmpty.c
+
+JudyLPrevEmpty.c:../JudyCommon/JudyPrevNextEmpty.c
+ cp -f ../JudyCommon/JudyPrevNextEmpty.c JudyLPrevEmpty.c
+
+JudyLTablesGen.c:../JudyCommon/JudyTables.c
+ cp -f ../JudyCommon/JudyTables.c JudyLTablesGen.c
+# 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:
Index: create-1.0.5-build-cc-patch/judy-1.0.5-new/src/JudyL
===================================================================
--- create-1.0.5-build-cc-patch/judy-1.0.5-new/src/JudyL (nonexistent)
+++ create-1.0.5-build-cc-patch/judy-1.0.5-new/src/JudyL (revision 5)
Property changes on: create-1.0.5-build-cc-patch/judy-1.0.5-new/src/JudyL
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create-1.0.5-build-cc-patch/judy-1.0.5-new/src
===================================================================
--- create-1.0.5-build-cc-patch/judy-1.0.5-new/src (nonexistent)
+++ create-1.0.5-build-cc-patch/judy-1.0.5-new/src (revision 5)
Property changes on: create-1.0.5-build-cc-patch/judy-1.0.5-new/src
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create-1.0.5-build-cc-patch/judy-1.0.5-new
===================================================================
--- create-1.0.5-build-cc-patch/judy-1.0.5-new (nonexistent)
+++ create-1.0.5-build-cc-patch/judy-1.0.5-new (revision 5)
Property changes on: create-1.0.5-build-cc-patch/judy-1.0.5-new
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create-1.0.5-build-cc-patch
===================================================================
--- create-1.0.5-build-cc-patch (nonexistent)
+++ create-1.0.5-build-cc-patch (revision 5)
Property changes on: create-1.0.5-build-cc-patch
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create-1.0.5-make-doc-patch/create.patch.sh
===================================================================
--- create-1.0.5-make-doc-patch/create.patch.sh (nonexistent)
+++ create-1.0.5-make-doc-patch/create.patch.sh (revision 5)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+VERSION=1.0.5
+
+tar --files-from=file.list -xzvf ../judy-$VERSION.tar.gz
+mv judy-$VERSION judy-$VERSION-orig
+
+cp -rf ./judy-$VERSION-new ./judy-$VERSION
+
+diff --unified -Nr judy-$VERSION-orig judy-$VERSION > judy-$VERSION-make-doc.patch
+
+mv judy-$VERSION-make-doc.patch ../patches
+
+rm -rf ./judy-$VERSION
+rm -rf ./judy-$VERSION-orig
Property changes on: create-1.0.5-make-doc-patch/create.patch.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: create-1.0.5-make-doc-patch/file.list
===================================================================
--- create-1.0.5-make-doc-patch/file.list (nonexistent)
+++ create-1.0.5-make-doc-patch/file.list (revision 5)
@@ -0,0 +1,2 @@
+judy-1.0.5/doc/Makefile.am
+judy-1.0.5/doc/Makefile.in
Index: create-1.0.5-make-doc-patch/judy-1.0.5-new/doc/Makefile.am
===================================================================
--- create-1.0.5-make-doc-patch/judy-1.0.5-new/doc/Makefile.am (nonexistent)
+++ create-1.0.5-make-doc-patch/judy-1.0.5-new/doc/Makefile.am (revision 5)
@@ -0,0 +1,252 @@
+man3_MANS = man/man3/Judy \
+ man/man3/Judy1 \
+ man/man3/Judy1_funcs \
+ man/man3/JudyL \
+ man/man3/JudyL_funcs \
+ man/man3/JudySL \
+ man/man3/JudySL_funcs \
+ man/man3/JudyHS \
+ man/man3/JudyHS_funcs \
+ man/man3/J1T \
+ man/man3/J1S \
+ man/man3/J1U \
+ man/man3/J1F \
+ man/man3/J1N \
+ man/man3/J1L \
+ man/man3/J1P \
+ man/man3/J1FE \
+ man/man3/J1NE \
+ man/man3/J1LE \
+ man/man3/J1PE \
+ man/man3/J1C \
+ man/man3/J1BC \
+ man/man3/J1FA \
+ man/man3/J1MU \
+ man/man3/Judy1Test \
+ man/man3/Judy1Set \
+ man/man3/Judy1Unset \
+ man/man3/Judy1First \
+ man/man3/Judy1Next \
+ man/man3/Judy1Last \
+ man/man3/Judy1Prev \
+ man/man3/Judy1FirstEmpty \
+ man/man3/Judy1NextEmpty \
+ man/man3/Judy1LastEmpty \
+ man/man3/Judy1PrevEmpty \
+ man/man3/Judy1Count \
+ man/man3/Judy1ByCount \
+ man/man3/Judy1FreeArray \
+ man/man3/Judy1MemUsed \
+ man/man3/JudyL \
+ man/man3/JLG \
+ man/man3/JLI \
+ man/man3/JLD \
+ man/man3/JLF \
+ man/man3/JLN \
+ man/man3/JLL \
+ man/man3/JLP \
+ man/man3/JLFE \
+ man/man3/JLNE \
+ man/man3/JLLE \
+ man/man3/JLPE \
+ man/man3/JLC \
+ man/man3/JLBC \
+ man/man3/JLFA \
+ man/man3/JLMU \
+ man/man3/JudyLGet \
+ man/man3/JudyLIns \
+ man/man3/JudyLDel \
+ man/man3/JudyLFirst \
+ man/man3/JudyLNext \
+ man/man3/JudyLLast \
+ man/man3/JudyLPrev \
+ man/man3/JudyLFirstEmpty \
+ man/man3/JudyLNextEmpty \
+ man/man3/JudyLLastEmpty \
+ man/man3/JudyLPrevEmpty \
+ man/man3/JudyLCount \
+ man/man3/JudyLByCount \
+ man/man3/JudyLFreeArray \
+ man/man3/JudyLMemUsed \
+ man/man3/JSLG \
+ man/man3/JSLI \
+ man/man3/JSLD \
+ man/man3/JSLF \
+ man/man3/JSLN \
+ man/man3/JSLL \
+ man/man3/JSLP \
+ man/man3/JSLFA \
+ man/man3/JudySLGet \
+ man/man3/JudySLIns \
+ man/man3/JudySLDel \
+ man/man3/JudySLFirst \
+ man/man3/JudySLNext \
+ man/man3/JudySLLast \
+ man/man3/JudySLPrev \
+ man/man3/JudySLFreeArray \
+ man/man3/JHSG \
+ man/man3/JHSI \
+ man/man3/JHSD \
+ man/man3/JHSFA \
+ man/man3/JudyHSGet \
+ man/man3/JudyHSIns \
+ man/man3/JudyHSDel \
+ man/man3/JudyHSFreeArray
+
+
+man/man3/Judy:
+ ../tool/jhton ext/Judy_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/Judy
+
+man/man3/J1T man/man3/J1S man/man3/J1U man/man3/J1F man/man3/J1N man/man3/J1L man/man3/J1P \
+man/man3/J1FE man/man3/J1NE man/man3/J1LE man/man3/J1PE man/man3/J1C man/man3/J1BC man/man3/J1FA \
+man/man3/J1MU : man/man3/Judy1
+
+man/man3/Judy1:
+ ( ../tool/jhton ext/Judy1_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/Judy1 ; \
+ cd man/man3 ; \
+ ln -sf Judy J1T ; \
+ ln -sf Judy J1S ; \
+ ln -sf Judy J1U ; \
+ ln -sf Judy J1F ; \
+ ln -sf Judy J1N ; \
+ ln -sf Judy J1L ; \
+ ln -sf Judy J1P ; \
+ ln -sf Judy J1FE ; \
+ ln -sf Judy J1NE ; \
+ ln -sf Judy J1LE ; \
+ ln -sf Judy J1PE ; \
+ ln -sf Judy J1C ; \
+ ln -sf Judy J1BC ; \
+ ln -sf Judy J1FA ; \
+ ln -sf Judy J1MU ; \
+ )
+
+man/man3/Judy1Test man/man3/Judy1Set man/man3/Judy1Unset man/man3/Judy1First man/man3/Judy1Next \
+man/man3/Judy1Last man/man3/Judy1Prev man/man3/Judy1FirstEmpty man/man3/Judy1NextEmpty \
+man/man3/Judy1LastEmpty man/man3/Judy1PrevEmpty man/man3/Judy1Count man/man3/Judy1ByCount \
+man/man3/Judy1FreeArray man/man3/Judy1MemUsed : man/man3/Judy1_funcs
+
+man/man3/Judy1_funcs:
+ ( ../tool/jhton ext/Judy1_funcs_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/Judy1_funcs ; \
+ cd man/man3 ; \
+ ln -sf Judy1_funcs Judy1Test ; \
+ ln -sf Judy1_funcs Judy1Set ; \
+ ln -sf Judy1_funcs Judy1Unset ; \
+ ln -sf Judy1_funcs Judy1First ; \
+ ln -sf Judy1_funcs Judy1Next ; \
+ ln -sf Judy1_funcs Judy1Last ; \
+ ln -sf Judy1_funcs Judy1Prev ; \
+ ln -sf Judy1_funcs Judy1FirstEmpty ; \
+ ln -sf Judy1_funcs Judy1NextEmpty ; \
+ ln -sf Judy1_funcs Judy1LastEmpty ; \
+ ln -sf Judy1_funcs Judy1PrevEmpty ; \
+ ln -sf Judy1_funcs Judy1Count ; \
+ ln -sf Judy1_funcs Judy1ByCount ; \
+ ln -sf Judy1_funcs Judy1FreeArray ; \
+ ln -sf Judy1_funcs Judy1MemUsed ; \
+ )
+
+man/man3/JLG man/man3/JLI man/man3/JLD man/man3/JLF man/man3/JLN man/man3/JLL man/man3/JLP \
+man/man3/JLFE man/man3/JLNE man/man3/JLLE man/man3/JLPE man/man3/JLC man/man3/JLBC man/man3/JLFA \
+man/man3/JLMU : man/man3/JudyL
+
+man/man3/JudyL:
+ ( ../tool/jhton ext/JudyL_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudyL ; \
+ cd man/man3 ; \
+ ln -sf JudyL JLG ; \
+ ln -sf JudyL JLI ; \
+ ln -sf JudyL JLD ; \
+ ln -sf JudyL JLF ; \
+ ln -sf JudyL JLN ; \
+ ln -sf JudyL JLL ; \
+ ln -sf JudyL JLP ; \
+ ln -sf JudyL JLFE ; \
+ ln -sf JudyL JLNE ; \
+ ln -sf JudyL JLLE ; \
+ ln -sf JudyL JLPE ; \
+ ln -sf JudyL JLC ; \
+ ln -sf JudyL JLBC ; \
+ ln -sf JudyL JLFA ; \
+ ln -sf JudyL JLMU ; \
+ )
+
+man/man3/JudyLGet man/man3/JudyLIns man/man3/JudyLDel man/man3/JudyLFirst man/man3/JudyLNext \
+man/man3/JudyLLast man/man3/JudyLPrev man/man3/JudyLFirstEmpty man/man3/JudyLNextEmpty \
+man/man3/JudyLLastEmpty man/man3/JudyLPrevEmpty man/man3/JudyLCount man/man3/JudyLByCount \
+man/man3/JudyLFreeArray man/man3/JudyLMemUsed : man/man3/JudyL_funcs
+
+man/man3/JudyL_funcs:
+ ( ../tool/jhton ext/JudyL_funcs_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudyL_funcs ; \
+ cd man/man3 ; \
+ ln -sf JudyL_funcs JudyLGet ; \
+ ln -sf JudyL_funcs JudyLIns ; \
+ ln -sf JudyL_funcs JudyLDel ; \
+ ln -sf JudyL_funcs JudyLFirst ; \
+ ln -sf JudyL_funcs JudyLNext ; \
+ ln -sf JudyL_funcs JudyLLast ; \
+ ln -sf JudyL_funcs JudyLPrev ; \
+ ln -sf JudyL_funcs JudyLFirstEmpty ; \
+ ln -sf JudyL_funcs JudyLNextEmpty ; \
+ ln -sf JudyL_funcs JudyLLastEmpty ; \
+ ln -sf JudyL_funcs JudyLPrevEmpty ; \
+ ln -sf JudyL_funcs JudyLCount ; \
+ ln -sf JudyL_funcs JudyLByCount ; \
+ ln -sf JudyL_funcs JudyLFreeArray ; \
+ ln -sf JudyL_funcs JudyLMemUsed ; \
+ )
+
+man/man3/JSLG man/man3/JSLI man/man3/JSLD man/man3/JSLF man/man3/JSLN man/man3/JSLL man/man3/JSLP \
+man/man3/JSLFA : man/man3/JudySL
+
+man/man3/JudySL:
+ ( ../tool/jhton ext/JudySL_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudySL ; \
+ cd man/man3 ; \
+ ln -sf JudySL JSLG ; \
+ ln -sf JudySL JSLI ; \
+ ln -sf JudySL JSLD ; \
+ ln -sf JudySL JSLF ; \
+ ln -sf JudySL JSLN ; \
+ ln -sf JudySL JSLL ; \
+ ln -sf JudySL JSLP ; \
+ ln -sf JudySL JSLFA ; \
+ )
+
+man/man3/JudySLGet man/man3/JudySLIns man/man3/JudySLDel man/man3/JudySLFirst man/man3/JudySLNext \
+man/man3/JudySLLast man/man3/JudySLPrev man/man3/JudySLFreeArray : man/man3/JudySL_funcs
+
+man/man3/JudySL_funcs:
+ ( ../tool/jhton ext/JudySL_funcs_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudySL_funcs ; \
+ cd man/man3 ; \
+ ln -sf JudySL_funcs JudySLGet ; \
+ ln -sf JudySL_funcs JudySLIns ; \
+ ln -sf JudySL_funcs JudySLDel ; \
+ ln -sf JudySL_funcs JudySLFirst ; \
+ ln -sf JudySL_funcs JudySLNext ; \
+ ln -sf JudySL_funcs JudySLLast ; \
+ ln -sf JudySL_funcs JudySLPrev ; \
+ ln -sf JudySL_funcs JudySLFreeArray ; \
+ )
+
+man/man3/JHSG man/man3/JHSI man/man3/JHSD man/man3/JHSFA : man/man3/JudyHS
+
+man/man3/JudyHS:
+ ( ../tool/jhton ext/JudyHS_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudyHS ; \
+ cd man/man3 ; \
+ ln -sf JudyHS JHSG ; \
+ ln -sf JudyHS JHSI ; \
+ ln -sf JudyHS JHSD ; \
+ ln -sf JudyHS JHSFA ; \
+ )
+
+man/man3/JudyHSGet man/man3/JudyHSIns man/man3/JudyHSDel man/man3/JudyHSFreeArray : man/man3/JudyHS_funcs
+
+man/man3/JudyHS_funcs:
+ ( ../tool/jhton ext/JudyHS_funcs_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudyHS_funcs ; \
+ cd man/man3 ; \
+ ln -sf JudyHS_funcs JudyHSGet ; \
+ ln -sf JudyHS_funcs JudyHSIns ; \
+ ln -sf JudyHS_funcs JudyHSDel ; \
+ ln -sf JudyHS_funcs JudyHSFreeArray ; \
+ )
+
+CLEANFILES = man/man3/*
Index: create-1.0.5-make-doc-patch/judy-1.0.5-new/doc/Makefile.in
===================================================================
--- create-1.0.5-make-doc-patch/judy-1.0.5-new/doc/Makefile.in (nonexistent)
+++ create-1.0.5-make-doc-patch/judy-1.0.5-new/doc/Makefile.in (revision 5)
@@ -0,0 +1,627 @@
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005 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@
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ..
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+INSTALL = @INSTALL@
+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 = doc
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ $(ACLOCAL_M4)
+mkinstalldirs = $(install_sh) -d
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES =
+SOURCES =
+DIST_SOURCES =
+man3dir = $(mandir)/man3
+am__installdirs = "$(DESTDIR)$(man3dir)"
+NROFF = nroff
+MANS = $(man3_MANS)
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ACLOCAL = @ACLOCAL@
+AMDEP_FALSE = @AMDEP_FALSE@
+AMDEP_TRUE = @AMDEP_TRUE@
+AMTAR = @AMTAR@
+AR = @AR@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+CC = @CC@
+CCDEPMODE = @CCDEPMODE@
+CFLAGS = @CFLAGS@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+ECHO = @ECHO@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+F77 = @F77@
+FFLAGS = @FFLAGS@
+FLAVOR = @FLAVOR@
+GREP = @GREP@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+LD = @LD@
+LDFLAGS = @LDFLAGS@
+LIBOBJS = @LIBOBJS@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
+LTLIBOBJS = @LTLIBOBJS@
+MAINT = @MAINT@
+MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+MAKEINFO = @MAKEINFO@
+OBJEXT = @OBJEXT@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+RANLIB = @RANLIB@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+STRIP = @STRIP@
+VERSION = @VERSION@
+VERSION_INFO = @VERSION_INFO@
+WARN_CFLAGS = @WARN_CFLAGS@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_F77 = @ac_ct_F77@
+am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
+am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
+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@
+datadir = @datadir@
+datarootdir = @datarootdir@
+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@
+htmldir = @htmldir@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localedir = @localedir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+man3_MANS = man/man3/Judy \
+ man/man3/Judy1 \
+ man/man3/Judy1_funcs \
+ man/man3/JudyL \
+ man/man3/JudyL_funcs \
+ man/man3/JudySL \
+ man/man3/JudySL_funcs \
+ man/man3/JudyHS \
+ man/man3/JudyHS_funcs \
+ man/man3/J1T \
+ man/man3/J1S \
+ man/man3/J1U \
+ man/man3/J1F \
+ man/man3/J1N \
+ man/man3/J1L \
+ man/man3/J1P \
+ man/man3/J1FE \
+ man/man3/J1NE \
+ man/man3/J1LE \
+ man/man3/J1PE \
+ man/man3/J1C \
+ man/man3/J1BC \
+ man/man3/J1FA \
+ man/man3/J1MU \
+ man/man3/Judy1Test \
+ man/man3/Judy1Set \
+ man/man3/Judy1Unset \
+ man/man3/Judy1First \
+ man/man3/Judy1Next \
+ man/man3/Judy1Last \
+ man/man3/Judy1Prev \
+ man/man3/Judy1FirstEmpty \
+ man/man3/Judy1NextEmpty \
+ man/man3/Judy1LastEmpty \
+ man/man3/Judy1PrevEmpty \
+ man/man3/Judy1Count \
+ man/man3/Judy1ByCount \
+ man/man3/Judy1FreeArray \
+ man/man3/Judy1MemUsed \
+ man/man3/JudyL \
+ man/man3/JLG \
+ man/man3/JLI \
+ man/man3/JLD \
+ man/man3/JLF \
+ man/man3/JLN \
+ man/man3/JLL \
+ man/man3/JLP \
+ man/man3/JLFE \
+ man/man3/JLNE \
+ man/man3/JLLE \
+ man/man3/JLPE \
+ man/man3/JLC \
+ man/man3/JLBC \
+ man/man3/JLFA \
+ man/man3/JLMU \
+ man/man3/JudyLGet \
+ man/man3/JudyLIns \
+ man/man3/JudyLDel \
+ man/man3/JudyLFirst \
+ man/man3/JudyLNext \
+ man/man3/JudyLLast \
+ man/man3/JudyLPrev \
+ man/man3/JudyLFirstEmpty \
+ man/man3/JudyLNextEmpty \
+ man/man3/JudyLLastEmpty \
+ man/man3/JudyLPrevEmpty \
+ man/man3/JudyLCount \
+ man/man3/JudyLByCount \
+ man/man3/JudyLFreeArray \
+ man/man3/JudyLMemUsed \
+ man/man3/JSLG \
+ man/man3/JSLI \
+ man/man3/JSLD \
+ man/man3/JSLF \
+ man/man3/JSLN \
+ man/man3/JSLL \
+ man/man3/JSLP \
+ man/man3/JSLFA \
+ man/man3/JudySLGet \
+ man/man3/JudySLIns \
+ man/man3/JudySLDel \
+ man/man3/JudySLFirst \
+ man/man3/JudySLNext \
+ man/man3/JudySLLast \
+ man/man3/JudySLPrev \
+ man/man3/JudySLFreeArray \
+ man/man3/JHSG \
+ man/man3/JHSI \
+ man/man3/JHSD \
+ man/man3/JHSFA \
+ man/man3/JudyHSGet \
+ man/man3/JudyHSIns \
+ man/man3/JudyHSDel \
+ man/man3/JudyHSFreeArray
+
+CLEANFILES = man/man3/*
+all: all-am
+
+.SUFFIXES:
+$(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 \
+ && exit 0; \
+ exit 1;; \
+ esac; \
+ done; \
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
+ cd $(top_srcdir) && \
+ $(AUTOMAKE) --gnu doc/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
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+distclean-libtool:
+ -rm -f libtool
+uninstall-info-am:
+install-man3: $(man3_MANS) $(man_MANS)
+ @$(NORMAL_INSTALL)
+ test -z "$(man3dir)" || $(mkdir_p) "$(DESTDIR)$(man3dir)"
+ @list='$(man3_MANS) $(dist_man3_MANS) $(nodist_man3_MANS)'; \
+ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
+ for i in $$l2; do \
+ case "$$i" in \
+ *.3*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
+ else file=$$i; fi; \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ case "$$ext" in \
+ 3*) ;; \
+ *) ext='3' ;; \
+ esac; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed -e 's/^.*\///'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man3dir)/$$inst'"; \
+ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man3dir)/$$inst"; \
+ done
+uninstall-man3:
+ @$(NORMAL_UNINSTALL)
+ @list='$(man3_MANS) $(dist_man3_MANS) $(nodist_man3_MANS)'; \
+ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
+ for i in $$l2; do \
+ case "$$i" in \
+ *.3*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ case "$$ext" in \
+ 3*) ;; \
+ *) ext='3' ;; \
+ esac; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed -e 's/^.*\///'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " rm -f '$(DESTDIR)$(man3dir)/$$inst'"; \
+ rm -f "$(DESTDIR)$(man3dir)/$$inst"; \
+ done
+tags: TAGS
+TAGS:
+
+ctags: CTAGS
+CTAGS:
+
+
+distdir: $(DISTFILES)
+ @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+ list='$(DISTFILES)'; for file in $$list; do \
+ case $$file in \
+ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+ esac; \
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+ dir="/$$dir"; \
+ $(mkdir_p) "$(distdir)$$dir"; \
+ else \
+ dir=''; \
+ fi; \
+ if test -d $$d/$$file; then \
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+ fi; \
+ cp -pR $$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: check-am
+all-am: Makefile $(MANS)
+installdirs:
+ for dir in "$(DESTDIR)$(man3dir)"; do \
+ test -z "$$dir" || $(mkdir_p) "$$dir"; \
+ done
+install: 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:
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-libtool mostlyclean-am
+
+distclean: distclean-am
+ -rm -f Makefile
+distclean-am: clean-am distclean-generic distclean-libtool
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+info: info-am
+
+info-am:
+
+install-data-am: install-man
+
+install-exec-am:
+
+install-info: install-info-am
+
+install-man: install-man3
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
+
+pdf: pdf-am
+
+pdf-am:
+
+ps: ps-am
+
+ps-am:
+
+uninstall-am: uninstall-info-am uninstall-man
+
+uninstall-man: uninstall-man3
+
+.PHONY: all all-am check check-am clean clean-generic clean-libtool \
+ distclean distclean-generic distclean-libtool distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-exec install-exec-am \
+ install-info install-info-am install-man install-man3 \
+ install-strip installcheck installcheck-am installdirs \
+ maintainer-clean maintainer-clean-generic mostlyclean \
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+ uninstall uninstall-am uninstall-info-am uninstall-man \
+ uninstall-man3
+
+
+man/man3/Judy:
+ ../tool/jhton ext/Judy_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/Judy
+
+man/man3/J1T man/man3/J1S man/man3/J1U man/man3/J1F man/man3/J1N man/man3/J1L man/man3/J1P \
+man/man3/J1FE man/man3/J1NE man/man3/J1LE man/man3/J1PE man/man3/J1C man/man3/J1BC man/man3/J1FA \
+man/man3/J1MU : man/man3/Judy1
+
+man/man3/Judy1:
+ ( ../tool/jhton ext/Judy1_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/Judy1 ; \
+ cd man/man3 ; \
+ ln -sf Judy J1T ; \
+ ln -sf Judy J1S ; \
+ ln -sf Judy J1U ; \
+ ln -sf Judy J1F ; \
+ ln -sf Judy J1N ; \
+ ln -sf Judy J1L ; \
+ ln -sf Judy J1P ; \
+ ln -sf Judy J1FE ; \
+ ln -sf Judy J1NE ; \
+ ln -sf Judy J1LE ; \
+ ln -sf Judy J1PE ; \
+ ln -sf Judy J1C ; \
+ ln -sf Judy J1BC ; \
+ ln -sf Judy J1FA ; \
+ ln -sf Judy J1MU ; \
+ )
+
+man/man3/Judy1Test man/man3/Judy1Set man/man3/Judy1Unset man/man3/Judy1First man/man3/Judy1Next \
+man/man3/Judy1Last man/man3/Judy1Prev man/man3/Judy1FirstEmpty man/man3/Judy1NextEmpty \
+man/man3/Judy1LastEmpty man/man3/Judy1PrevEmpty man/man3/Judy1Count man/man3/Judy1ByCount \
+man/man3/Judy1FreeArray man/man3/Judy1MemUsed : man/man3/Judy1_funcs
+
+man/man3/Judy1_funcs:
+ ( ../tool/jhton ext/Judy1_funcs_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/Judy1_funcs ; \
+ cd man/man3 ; \
+ ln -sf Judy1_funcs Judy1Test ; \
+ ln -sf Judy1_funcs Judy1Set ; \
+ ln -sf Judy1_funcs Judy1Unset ; \
+ ln -sf Judy1_funcs Judy1First ; \
+ ln -sf Judy1_funcs Judy1Next ; \
+ ln -sf Judy1_funcs Judy1Last ; \
+ ln -sf Judy1_funcs Judy1Prev ; \
+ ln -sf Judy1_funcs Judy1FirstEmpty ; \
+ ln -sf Judy1_funcs Judy1NextEmpty ; \
+ ln -sf Judy1_funcs Judy1LastEmpty ; \
+ ln -sf Judy1_funcs Judy1PrevEmpty ; \
+ ln -sf Judy1_funcs Judy1Count ; \
+ ln -sf Judy1_funcs Judy1ByCount ; \
+ ln -sf Judy1_funcs Judy1FreeArray ; \
+ ln -sf Judy1_funcs Judy1MemUsed ; \
+ )
+
+man/man3/JLG man/man3/JLI man/man3/JLD man/man3/JLF man/man3/JLN man/man3/JLL man/man3/JLP \
+man/man3/JLFE man/man3/JLNE man/man3/JLLE man/man3/JLPE man/man3/JLC man/man3/JLBC man/man3/JLFA \
+man/man3/JLMU : man/man3/JudyL
+
+man/man3/JudyL:
+ ( ../tool/jhton ext/JudyL_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudyL ; \
+ cd man/man3 ; \
+ ln -sf JudyL JLG ; \
+ ln -sf JudyL JLI ; \
+ ln -sf JudyL JLD ; \
+ ln -sf JudyL JLF ; \
+ ln -sf JudyL JLN ; \
+ ln -sf JudyL JLL ; \
+ ln -sf JudyL JLP ; \
+ ln -sf JudyL JLFE ; \
+ ln -sf JudyL JLNE ; \
+ ln -sf JudyL JLLE ; \
+ ln -sf JudyL JLPE ; \
+ ln -sf JudyL JLC ; \
+ ln -sf JudyL JLBC ; \
+ ln -sf JudyL JLFA ; \
+ ln -sf JudyL JLMU ; \
+ )
+
+man/man3/JudyLGet man/man3/JudyLIns man/man3/JudyLDel man/man3/JudyLFirst man/man3/JudyLNext \
+man/man3/JudyLLast man/man3/JudyLPrev man/man3/JudyLFirstEmpty man/man3/JudyLNextEmpty \
+man/man3/JudyLLastEmpty man/man3/JudyLPrevEmpty man/man3/JudyLCount man/man3/JudyLByCount \
+man/man3/JudyLFreeArray man/man3/JudyLMemUsed : man/man3/JudyL_funcs
+
+man/man3/JudyL_funcs:
+ ( ../tool/jhton ext/JudyL_funcs_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudyL_funcs ; \
+ cd man/man3 ; \
+ ln -sf JudyL_funcs JudyLGet ; \
+ ln -sf JudyL_funcs JudyLIns ; \
+ ln -sf JudyL_funcs JudyLDel ; \
+ ln -sf JudyL_funcs JudyLFirst ; \
+ ln -sf JudyL_funcs JudyLNext ; \
+ ln -sf JudyL_funcs JudyLLast ; \
+ ln -sf JudyL_funcs JudyLPrev ; \
+ ln -sf JudyL_funcs JudyLFirstEmpty ; \
+ ln -sf JudyL_funcs JudyLNextEmpty ; \
+ ln -sf JudyL_funcs JudyLLastEmpty ; \
+ ln -sf JudyL_funcs JudyLPrevEmpty ; \
+ ln -sf JudyL_funcs JudyLCount ; \
+ ln -sf JudyL_funcs JudyLByCount ; \
+ ln -sf JudyL_funcs JudyLFreeArray ; \
+ ln -sf JudyL_funcs JudyLMemUsed ; \
+ )
+
+man/man3/JSLG man/man3/JSLI man/man3/JSLD man/man3/JSLF man/man3/JSLN man/man3/JSLL man/man3/JSLP \
+man/man3/JSLFA : man/man3/JudySL
+
+man/man3/JudySL:
+ ( ../tool/jhton ext/JudySL_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudySL ; \
+ cd man/man3 ; \
+ ln -sf JudySL JSLG ; \
+ ln -sf JudySL JSLI ; \
+ ln -sf JudySL JSLD ; \
+ ln -sf JudySL JSLF ; \
+ ln -sf JudySL JSLN ; \
+ ln -sf JudySL JSLL ; \
+ ln -sf JudySL JSLP ; \
+ ln -sf JudySL JSLFA ; \
+ )
+
+man/man3/JudySLGet man/man3/JudySLIns man/man3/JudySLDel man/man3/JudySLFirst man/man3/JudySLNext \
+man/man3/JudySLLast man/man3/JudySLPrev man/man3/JudySLFreeArray : man/man3/JudySL_funcs
+
+man/man3/JudySL_funcs:
+ ( ../tool/jhton ext/JudySL_funcs_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudySL_funcs ; \
+ cd man/man3 ; \
+ ln -sf JudySL_funcs JudySLGet ; \
+ ln -sf JudySL_funcs JudySLIns ; \
+ ln -sf JudySL_funcs JudySLDel ; \
+ ln -sf JudySL_funcs JudySLFirst ; \
+ ln -sf JudySL_funcs JudySLNext ; \
+ ln -sf JudySL_funcs JudySLLast ; \
+ ln -sf JudySL_funcs JudySLPrev ; \
+ ln -sf JudySL_funcs JudySLFreeArray ; \
+ )
+
+man/man3/JHSG man/man3/JHSI man/man3/JHSD man/man3/JHSFA : man/man3/JudyHS
+
+man/man3/JudyHS:
+ ( ../tool/jhton ext/JudyHS_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudyHS ; \
+ cd man/man3 ; \
+ ln -sf JudyHS JHSG ; \
+ ln -sf JudyHS JHSI ; \
+ ln -sf JudyHS JHSD ; \
+ ln -sf JudyHS JHSFA ; \
+ )
+
+man/man3/JudyHSGet man/man3/JudyHSIns man/man3/JudyHSDel man/man3/JudyHSFreeArray : man/man3/JudyHS_funcs
+
+man/man3/JudyHS_funcs:
+ ( ../tool/jhton ext/JudyHS_funcs_3.htm | grep -v '^[ ]*$$' | sed -e 's/\.C//' > man/man3/JudyHS_funcs ; \
+ cd man/man3 ; \
+ ln -sf JudyHS_funcs JudyHSGet ; \
+ ln -sf JudyHS_funcs JudyHSIns ; \
+ ln -sf JudyHS_funcs JudyHSDel ; \
+ ln -sf JudyHS_funcs JudyHSFreeArray ; \
+ )
+# 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:
Index: create-1.0.5-make-doc-patch/judy-1.0.5-new/doc
===================================================================
--- create-1.0.5-make-doc-patch/judy-1.0.5-new/doc (nonexistent)
+++ create-1.0.5-make-doc-patch/judy-1.0.5-new/doc (revision 5)
Property changes on: create-1.0.5-make-doc-patch/judy-1.0.5-new/doc
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create-1.0.5-make-doc-patch/judy-1.0.5-new
===================================================================
--- create-1.0.5-make-doc-patch/judy-1.0.5-new (nonexistent)
+++ create-1.0.5-make-doc-patch/judy-1.0.5-new (revision 5)
Property changes on: create-1.0.5-make-doc-patch/judy-1.0.5-new
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create-1.0.5-make-doc-patch
===================================================================
--- create-1.0.5-make-doc-patch (nonexistent)
+++ create-1.0.5-make-doc-patch (revision 5)
Property changes on: create-1.0.5-make-doc-patch
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: patches/README
===================================================================
--- patches/README (nonexistent)
+++ patches/README (revision 5)
@@ -0,0 +1,6 @@
+
+/* begin *
+
+ TODO: Leave some comment here.
+
+ * end */
Index: patches
===================================================================
--- patches (nonexistent)
+++ patches (revision 5)
Property changes on: patches
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: .
===================================================================
--- . (nonexistent)
+++ . (revision 5)
Property changes on: .
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~