Makefile.am 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Makefile for GNU tar sources.
  2. # Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003, 2006,
  3. # 2007, 2009 Free 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 3, 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. checkpoint.c\
  21. compare.c\
  22. create.c\
  23. delete.c\
  24. extract.c\
  25. xheader.c\
  26. incremen.c\
  27. list.c\
  28. misc.c\
  29. names.c\
  30. sparse.c\
  31. suffix.c\
  32. system.c\
  33. tar.c\
  34. transform.c\
  35. update.c\
  36. utf8.c\
  37. warning.c
  38. INCLUDES = -I$(top_srcdir)/gnu -I../ -I../gnu -I$(top_srcdir)/lib -I../lib
  39. LDADD = ../lib/libtar.a ../gnu/libgnu.a $(LIBINTL) $(LIBICONV)
  40. tar_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME)