Don't distribute the text samples. Generating them is too easy.
[jog] / sounds / Makefile.m4
CommitLineData
416bc2cb 1## -*-makefile-*-
2##
8284b00b 3## $Id: Makefile.m4,v 1.2 2002/02/02 19:23:06 mdw Exp $
416bc2cb 4##
5## Makefile for sounds subdirectory
6##
7## (c) 2002 Mark Wooding
8##
9
10##----- Licensing notice ----------------------------------------------------
11##
12## This file is part of Jog: Programming for a jogging machine.
13##
14## Jog is free software; you can redistribute it and/or modify
15## it under the terms of the GNU General Public License as published by
16## the Free Software Foundation; either version 2 of the License, or
17## (at your option) any later version.
18##
19## Jog is distributed in the hope that it will be useful,
20## but WITHOUT ANY WARRANTY; without even the implied warranty of
21## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22## GNU General Public License for more details.
23##
24## You should have received a copy of the GNU General Public License
25## along with Jog; if not, write to the Free Software Foundation,
26## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
28##----- Revision history ----------------------------------------------------
29##
30## $Log: Makefile.m4,v $
8284b00b 31## Revision 1.2 2002/02/02 19:23:06 mdw
32## Don't distribute the text samples. Generating them is too easy.
33##
416bc2cb 34## Revision 1.1 2002/02/02 19:18:01 mdw
35## Construct text `samples' automatically.
36##
37
38AUTOMAKE_OPTIONS = foreign
39
40changecom
41changequote([[, ]])
42define([[getsamples]], [[dnl
43sed '/^[ ]*\($$2\|#\)/d' <$3SAMPLES | dnl
44 while read tag msg; do $1; done]])
45
46audiodir = @audiodir@
47
48## SAMPLES = syscmd(getsamples([[echo -n " \\
49 $tag.wav"]]))
50SAMPLES =
51TXTSAMPLES = syscmd(getsamples([[echo -n " \\
52 $tag.txt"]]))
53
54audio_DATA = $(SAMPLES) $(TXTSAMPLES)
55
56EXTRA_DIST = \
8284b00b 57 $(SAMPLES) SAMPLES Makefile.m4
416bc2cb 58
59$(TXTSAMPLES): txtsamples.stamp
60
61txtsamples.stamp: SAMPLES
62 getsamples([[echo "$$msg" >$$tag.txt]], [[$]], [[$(srcdir)/]])
63 echo timestamp >txtsamples.stamp
64
65Makefile.am: Makefile.m4 SAMPLES
66 cd $(srcdir) && m4 Makefile.m4 >Makefile.am
67
68CLEANFILES = $(TXTSAMPLES) txtsamples.stamp
69
70##----- That's all, folks ---------------------------------------------------