X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fcontrib%2FMakefile.am;h=74faaf72f5c3c2496684e4d6f0337fa34ea2aab5;hb=c257b555225193e54d85daf541d29578b3c93882;hp=73f34fdd36112ddcdac011b683f9c9346dd9043a;hpb=ef391ef4209fbfce60a77109d3930bc49f3cdc71;p=silc.git diff --git a/lib/contrib/Makefile.am b/lib/contrib/Makefile.am index 73f34fdd..74faaf72 100644 --- a/lib/contrib/Makefile.am +++ b/lib/contrib/Makefile.am @@ -1,14 +1,13 @@ # # Makefile.am # -# Author: Pekka Riikonen +# Author: Pekka Riikonen # -# Copyright (C) 2000 Pekka Riikonen +# Copyright (C) 2000 - 2005 Pekka Riikonen # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. +# the Free Software Foundation; version 2 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -18,19 +17,28 @@ AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign -noinst_LIBRARIES = libcontrib.a +noinst_LTLIBRARIES = libcontrib.la + +if HAVE_GETOPT_LONG +GETOPT = +else +GETOPT = getopt.c getopt1.c +endif + +if HAVE_REGEX +REGEX = +else +REGEX = regex.c +endif + +STRINGPREP = nfkc.c rfc3454.c stringprep.c if SILC_WIN32 -libcontrib_a_SOURCES = \ - getopt.c \ - getopt1.c +libcontrib_la_SOURCES = $(STRINGPREP) else -libcontrib_a_SOURCES = \ - getopt.c \ - getopt1.c \ - regex.c +libcontrib_la_SOURCES = $(STRINGPREP) $(GETOPT) $(REGEX) endif -EXTRA_DIST = *.h +EXTRA_DIST = *.c *.h include $(top_srcdir)/Makefile.defines.in