Home | History | Annotate | Line # | Download | only in lib
      1  1.1  christos # Automakefile for GNU Diffutils library.
      2  1.1  christos 
      3  1.1  christos # Copyright (C) 2001, 2002 Free Software Foundation, Inc.
      4  1.1  christos 
      5  1.1  christos ## This program is free software; you can redistribute it and/or modify
      6  1.1  christos ## it under the terms of the GNU General Public License as published by
      7  1.1  christos ## the Free Software Foundation; either version 2, or (at your option)
      8  1.1  christos ## any later version.
      9  1.1  christos 
     10  1.1  christos ## This program is distributed in the hope that it will be useful,
     11  1.1  christos ## but WITHOUT ANY WARRANTY; without even the implied warranty of
     12  1.1  christos ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13  1.1  christos ## GNU General Public License for more details.
     14  1.1  christos 
     15  1.1  christos ## You should have received a copy of the GNU General Public License
     16  1.1  christos ## along with this program; if not, write to the Free Software
     17  1.1  christos ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     18  1.1  christos ## 02111-1307, USA.
     19  1.1  christos 
     20  1.1  christos noinst_LIBRARIES = libdiffutils.a
     21  1.1  christos 
     22  1.1  christos EXTRA_DIST = alloca.c fnmatch.c inttostr.c malloc.c memchr.c mkstemp.c \
     23  1.1  christos   realloc.c regex.c strcasecmp.c strtoimax.c strtol.c tempname.c waitpid.c \
     24  1.1  christos   xstrtol.c
     25  1.1  christos SUBDIRS = posix
     26  1.1  christos 
     27  1.1  christos noinst_HEADERS = \
     28  1.1  christos   c-stack.h cmpbuf.h dirname.h error.h exclude.h exitfail.h \
     29  1.1  christos   fnmatch.hin freesoft.h getopt.h \
     30  1.1  christos   gettext.h hard-locale.h inttostr.h prepargs.h posixver.h quotesys.h \
     31  1.1  christos   regex.hin setmode.h unlocked-io.h xalloc.h xstrtol.h
     32  1.1  christos 
     33  1.1  christos libdiffutils_a_SOURCES = \
     34  1.1  christos   basename.c c-stack.c cmpbuf.c error.c exclude.c exitfail.c \
     35  1.1  christos   freesoft.c getopt.c getopt1.c \
     36  1.1  christos   hard-locale.c imaxtostr.c offtostr.c prepargs.c posixver.c quotesys.c \
     37  1.1  christos   setmode.c strftime.c umaxtostr.c xmalloc.c xstrtoumax.c
     38  1.1  christos 
     39  1.1  christos libdiffutils_a_LIBADD = @ALLOCA@ @LIBOBJS@
     40  1.1  christos libdiffutils_a_DEPENDENCIES = $(libdiffutils_a_LIBADD)
     41  1.1  christos 
     42  1.1  christos DISTCLEANFILES = fnmatch.h fnmatch.hno regex.h regex.hno
     43