X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FMakefile.am;h=82b2d4628510754d0283141a3c2ffc186ae2f000;hb=93906c238d9309f95afeddfa9ac8d7ce92351e70;hp=782df19da26d921d36e74bff2ca99a027ccdb2f8;hpb=085cace1805308589c6211429068f68047be0b0e;p=chaz%2Ftar diff --git a/src/Makefile.am b/src/Makefile.am index 782df19..82b2d46 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,22 +1,22 @@ # Makefile for GNU tar sources. -# Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003, 2006, -# 2007, 2009 Free Software Foundation, Inc. +# Copyright 1994-1997, 1999-2001, 2003, 2006-2007, 2009, 2013-2014 Free +# Software Foundation, Inc. -## 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 3, or (at your option) -## any later version. +# This file is part of GNU tar. -## This program is distributed in the hope that it will be useful, -## but WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -## GNU General Public License for more details. +# GNU tar 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 3 of the License, or +# (at your option) any later version. -## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -## 02110-1301, USA. +# GNU tar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . bin_PROGRAMS = tar @@ -28,6 +28,7 @@ tar_SOURCES = \ create.c\ delete.c\ exit.c\ + exclist.c\ extract.c\ xheader.c\ incremen.c\ @@ -45,8 +46,13 @@ tar_SOURCES = \ warning.c\ xattrs.c -INCLUDES = -I$(top_srcdir)/gnu -I../ -I../gnu -I$(top_srcdir)/lib -I../lib +AM_CPPFLAGS = -I$(top_srcdir)/gnu -I../ -I../gnu -I$(top_srcdir)/lib -I../lib +AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS) LDADD = ../lib/libtar.a ../gnu/libgnu.a $(LIBINTL) $(LIBICONV) tar_LDADD = $(LIBS) $(LDADD) $(LIB_CLOCK_GETTIME) $(LIB_EACCESS) $(LIB_SELINUX) + +if TAR_LIB_ATTR +tar_LDADD += -lattr +endif