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
|
## Process this file with automake to produce Makefile.in
## Copyright (c) 1999-2004 Philip Kendall
## $Id: Makefile.am 4154 2010-08-31 14:14:34Z fredm $
## 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
AUTOMAKE_OPTIONS = foreign
FILES = cassette.bmp \
keyboard.scr \
microdrive.bmp \
plus3disk.bmp \
@AUTOLOAD_SNAPS@/disk_plus3.szx \
@AUTOLOAD_SNAPS@/tape_128.szx \
@AUTOLOAD_SNAPS@/tape_16.szx \
@AUTOLOAD_SNAPS@/tape_2048.szx \
@AUTOLOAD_SNAPS@/tape_2068.szx \
@AUTOLOAD_SNAPS@/tape_48.szx \
@AUTOLOAD_SNAPS@/tape_48_ntsc.szx \
@AUTOLOAD_SNAPS@/tape_plus2.szx \
@AUTOLOAD_SNAPS@/tape_plus2a.szx \
@AUTOLOAD_SNAPS@/tape_plus3.szx \
@AUTOLOAD_SNAPS@/tape_plus3e.szx \
@AUTOLOAD_SNAPS@/tape_pentagon.szx \
@AUTOLOAD_SNAPS@/tape_scorpion.szx \
@AUTOLOAD_SNAPS@/tape_se.szx \
@AUTOLOAD_SNAPS@/tape_ts2068.szx
pkgdata_DATA = $(FILES)
EXTRA_DIST = $(FILES) \
compressed/disk_plus3.szx \
compressed/tape_128.szx \
compressed/tape_16.szx \
compressed/tape_2048.szx \
compressed/tape_2068.szx \
compressed/tape_48.szx \
compressed/tape_48_ntsc.szx \
compressed/tape_plus2.szx \
compressed/tape_plus2a.szx \
compressed/tape_plus3.szx \
compressed/tape_plus3e.szx \
compressed/tape_pentagon.szx \
compressed/tape_scorpion.szx \
compressed/tape_se.szx \
compressed/tape_ts2068.szx \
uncompressed/disk_plus3.szx \
uncompressed/tape_128.szx \
uncompressed/tape_16.szx \
uncompressed/tape_2048.szx \
uncompressed/tape_2068.szx \
uncompressed/tape_48.szx \
uncompressed/tape_48_ntsc.szx \
uncompressed/tape_plus2.szx \
uncompressed/tape_plus2a.szx \
uncompressed/tape_plus3.szx \
uncompressed/tape_plus3e.szx \
uncompressed/tape_pentagon.szx \
uncompressed/tape_scorpion.szx \
uncompressed/tape_se.szx \
uncompressed/tape_ts2068.szx
distclean-local:
rm -f *.szx
|