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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
## Process this file with automake to produce Makefile.in
## Copyright (c) 2007,2015 Philip Kendall
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 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 General Public License for more details.
##
## You should have received a copy of the GNU General Public License along
## with this program; if not, write to the Free Software Foundation, Inc.,
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
##
## Author contact information:
##
## E-mail: philip-fuse@shadowmagic.org.uk
check_PROGRAMS = test/test
TESTS = $(check_PROGRAMS)
test_test_SOURCES = \
test/edges.c \
test/szx.c \
test/test.c \
test/test_edges.c
test_test_CFLAGS = -DSRCDIR='"$(srcdir)"'
noinst_DATA += test/complete-tzx.tzx
noinst_HEADERS += test/test.h
test/complete-tzx.tzx: test/complete-tzx.pl
$(AM_V_GEN)$(PERL) $< > $@.tmp && mv $@.tmp $@
test_test_LDADD = libspectrum.la
EXTRA_DIST += \
test/Makefile.am \
test/complete-tzx.pl \
test/empty-drb.tzx \
test/empty.csw \
test/empty.szx \
test/empty.z80 \
test/invalid-archiveinfo.tzx \
test/invalid-custominfo.tzx \
test/invalid-gdb.tzx \
test/invalid-hardwareinfo.tzx \
test/invalid-warajevo-blockoffset.tap \
test/invalid.gz \
test/invalid.szx \
test/invalid.tzx \
test/jump.tzx \
test/loop.tzx \
test/loop2.tzx \
test/loopend.tzx \
test/no-pilot-gdb.tzx \
test/plus3.z80 \
test/random.szx \
test/raw-data-block.tzx \
test/sp-2000.sna.gz \
test/sp-ffff.sna.gz \
test/standard-tap.tap \
test/szx-chunks/AMXM.szx \
test/szx-chunks/ATRP.szx \
test/szx-chunks/ATRP-uncompressed.szx.gz \
test/szx-chunks/AY.szx \
test/szx-chunks/CFRP.szx \
test/szx-chunks/CFRP-uncompressed.szx.gz \
test/szx-chunks/COVX.szx \
test/szx-chunks/DRUM.szx \
test/szx-chunks/JOY.szx \
test/szx-chunks/KEYB.szx \
test/szx-chunks/RAMP.szx \
test/szx-chunks/RAMP-uncompressed.szx.gz \
test/szx-chunks/SCLD.szx \
test/szx-chunks/SIDE.szx \
test/szx-chunks/SPCR.szx \
test/szx-chunks/Z80R.szx \
test/szx-chunks/ZMMC.szx \
test/szx-chunks/ZXAT.szx \
test/szx-chunks/ZXCF.szx \
test/szx-chunks/ZXPR.szx \
test/trailing-pause-block.tzx \
test/turbo-zeropilot.tzx \
test/writeprotected.mdr \
test/zero-tail.pzx
CLEANFILES += \
test/.libs/test \
test/complete-tzx.tzx
|