12345678910111213141516171819202122232425262728293031 |
- # Main Makefile for GNU tar.
- # Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003, 2007 Free
- # Software Foundation, Inc.
- #
- #
- #
- #
- #
- #
- #
- #
- #
- #
- #
- #
- ACLOCAL_AMFLAGS = -I m4
- EXTRA_DIST = ChangeLog.1 PORTS
- SUBDIRS = doc lib rmt src scripts po tests
- dist-hook:
- -rm -f $(distdir).cpio
- find $(distdir) | cpio -Hcrc -o | \
- GZIP=$(GZIP_ENV) gzip -c > $(distdir).cpio.gz
- distclean-local:
- -rm -f $(distdir).cpio.gz
|