Blame src/Makefile.am

Packit 1ef1a9
# This file is part of GNU cpio
Packit 1ef1a9
# Copyright (C) 2003-2004, 2007, 2009-2010, 2014-2015 Free Software
Packit 1ef1a9
# Foundation, Inc.
Packit 1ef1a9
#
Packit 1ef1a9
# This program is free software; you can redistribute it and/or modify
Packit 1ef1a9
# it under the terms of the GNU General Public License as published by
Packit 1ef1a9
# the Free Software Foundation; either version 3, or (at your option)
Packit 1ef1a9
# any later version.
Packit 1ef1a9
#
Packit 1ef1a9
# This program is distributed in the hope that it will be useful,
Packit 1ef1a9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 1ef1a9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 1ef1a9
# GNU General Public License for more details.
Packit 1ef1a9
#
Packit 1ef1a9
# You should have received a copy of the GNU General Public License
Packit 1ef1a9
# along with this program; if not, write to the Free Software
Packit 1ef1a9
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit 1ef1a9
# 02110-1301 USA.
Packit 1ef1a9
Packit 1ef1a9
AM_CPPFLAGS=-I. -I.. -I$(top_srcdir)/gnu -I$(top_builddir)/gnu  -I$(top_srcdir)/lib -I$(top_builddir)/lib
Packit 1ef1a9
Packit 1ef1a9
bin_PROGRAMS=cpio $(CPIO_MT)
Packit 1ef1a9
if CPIO_MT_COND
Packit 1ef1a9
  CPIO_MT=mt
Packit 1ef1a9
endif
Packit 1ef1a9
Packit 1ef1a9
EXTRA_PROGRAMS=mt
Packit 1ef1a9
Packit 1ef1a9
cpio_SOURCES = \
Packit 1ef1a9
 copyin.c\
Packit 1ef1a9
 copyout.c\
Packit 1ef1a9
 copypass.c\
Packit 1ef1a9
 defer.c\
Packit 1ef1a9
 dstring.c\
Packit 1ef1a9
 global.c\
Packit 1ef1a9
 fatal.c\
Packit 1ef1a9
 main.c\
Packit 1ef1a9
 tar.c\
Packit 1ef1a9
 util.c\
Packit 1ef1a9
 filemode.c\
Packit 1ef1a9
 idcache.c\
Packit 1ef1a9
 makepath.c\
Packit 1ef1a9
 userspec.c
Packit 1ef1a9
Packit 1ef1a9
noinst_HEADERS =\
Packit 1ef1a9
 cpio.h\
Packit 1ef1a9
 cpiohdr.h\
Packit 1ef1a9
 tar.h\
Packit 1ef1a9
 tarhdr.h\
Packit 1ef1a9
 defer.h\
Packit 1ef1a9
 dstring.h\
Packit 1ef1a9
 extern.h\
Packit 1ef1a9
 filetypes.h\
Packit 1ef1a9
 safe-stat.h
Packit 1ef1a9
Packit 1ef1a9
LDADD=../lib/libpax.a ../gnu/libgnu.a @INTLLIBS@
Packit 1ef1a9