]> git.cworth.org Git - tar/blob - src/Makefile.am
Imported Upstream version 1.20
[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 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
24 tar_SOURCES = \
25  buffer.c\
26  checkpoint.c\
27  compare.c\
28  create.c\
29  delete.c\
30  extract.c\
31  xheader.c\
32  incremen.c\
33  list.c\
34  misc.c\
35  names.c\
36  sparse.c\
37  suffix.c\
38  system.c\
39  tar.c\
40  transform.c\
41  update.c\
42  utf8.c
43
44 INCLUDES = -I$(top_srcdir)/lib -I../ -I../lib
45
46 LDADD = ../lib/libtar.a $(LIBINTL) $(LIBICONV)
47
48 tar_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME)