File: Makefile.am

package info (click to toggle)
librsync 0.9.7-10
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 2,528 kB
  • ctags: 965
  • sloc: sh: 8,648; ansic: 5,358; makefile: 118; perl: 98
file content (52 lines) | stat: -rw-r--r-- 1,972 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
## Process this file with automake to produce Makefile.in

# Copyright (C) 2002 by Ben Elliston <bje@redhat.com>
# $Id: Makefile.am,v 1.4 2003/03/20 15:10:13 abo Exp $

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation; either version 2.1 of
# the License, or (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
# 
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

MAINTAINERCLEANFILES = Makefile.in

check_PROGRAMS = isprefix.driver

INCLUDES = -I $(srcdir)/..
isprefix_driver_SOURCES = isprefix.driver.c
isprefix_driver_LDADD = ../isprefix.o # XXX: should link replaced functions

# NB: tests should exit with code 77 if they can't be run but haven't
# failed.  Generally these tests should be ordered so that more basic
# tests are run first.

TEST_LOG_COMPILER = $(SH) $(srcdir)/driver.sh

TESTS = \
	signature.test mutate.test sources.test isprefix.test	\
	delta.test mksum.test triple.test changes.test

noinst_SCRIPTS = driver.sh mutate.pl $(TESTS)

test_data = dot \
	changes.input/01.in changes.input/02.in \
	changes.input/03.in changes.input/04.in \
	delta.input/01.delta delta.input/01.expect \
	delta.input/02.delta delta.input/02.expect \
	delta.input/03.delta delta.input/03.expect \
	mdfour.input/01.expect mdfour.input/01.data \
	mksum.input/COPYING.sig \
	triple.input/copying.in triple.input/half.in \
	triple.input/hello.in triple.input/zero.in \
	signature.input/01.in signature.input/01.sig

EXTRA_DIST = $(noinst_SCRIPTS) $(test_data)