]> Dogcows Code - chaz/tar/blob - src/Makefile.am
Add basic suuport for extended attributes.
[chaz/tar] / src / Makefile.am
1 # Makefile for GNU tar sources.
2
3 # Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003, 2006,
4 # 2007, 2009 Free Software Foundation, Inc.
5
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 3, or (at your option)
9 ## any later version.
10
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ## GNU General Public License for more details.
15
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 ## 02110-1301, USA.
20
21 bin_PROGRAMS = tar
22
23 noinst_HEADERS = arith.h common.h tar.h xattrs.h
24 tar_SOURCES = \
25 buffer.c\
26 checkpoint.c\
27 compare.c\
28 create.c\
29 delete.c\
30 exit.c\
31 extract.c\
32 xheader.c\
33 incremen.c\
34 list.c\
35 misc.c\
36 names.c\
37 sparse.c\
38 suffix.c\
39 system.c\
40 tar.c\
41 transform.c\
42 unlink.c\
43 update.c\
44 utf8.c\
45 warning.c\
46 xattrs.c
47
48 INCLUDES = -I$(top_srcdir)/gnu -I../ -I../gnu -I$(top_srcdir)/lib -I../lib
49
50 LDADD = ../lib/libtar.a ../gnu/libgnu.a $(LIBINTL) $(LIBICONV)
51
52 tar_LDADD = $(LIBS) $(LDADD) $(LIB_CLOCK_GETTIME) $(LIB_EACCESS)
This page took 0.037124 seconds and 5 git commands to generate.