4
0

Makefile.am 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Makefile for GNU tar sources.
  2. # Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003 Free
  3. # Software Foundation, Inc.
  4. ## This program is free software; you can redistribute it and/or modify
  5. ## it under the terms of the GNU General Public License as published by
  6. ## the Free Software Foundation; either version 2, or (at your option)
  7. ## any later version.
  8. ## This program is distributed in the hope that it will be useful,
  9. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. ## GNU General Public License for more details.
  12. ## You should have received a copy of the GNU General Public License
  13. ## along with this program; if not, write to the Free Software
  14. ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  15. ## 02110-1301, USA.
  16. bin_PROGRAMS = tar
  17. noinst_HEADERS = arith.h common.h tar.h
  18. tar_SOURCES = \
  19. buffer.c\
  20. compare.c\
  21. create.c\
  22. delete.c\
  23. extract.c\
  24. xheader.c\
  25. incremen.c\
  26. list.c\
  27. mangle.c\
  28. misc.c\
  29. names.c\
  30. sparse.c\
  31. system.c\
  32. tar.c\
  33. update.c\
  34. utf8.c
  35. INCLUDES = -I$(top_srcdir)/lib -I../ -I../lib
  36. tar.o: ../lib/localedir.h
  37. LDADD = ../lib/libtar.a $(LIBINTL) $(LIBICONV)
  38. tar_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME)