blob: 02d74dd45272d5f5975ab3dce2b67003292527ef (
plain)
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
|
## Copyright (C) 2012 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
##
INCLUDES = -I$(srcdir)/libp2c
AM_CFLAGS = #$(WARNING_CFLAGS)
bin_PROGRAMS = prepmx
## prepmx_SOURCES = config.h
prepmx_SOURCES = \
analyze.c \
analyze.h \
cfuncs.c \
cfuncs.h \
control.c \
control.h \
files.c \
files.h \
globals.c \
globals.h \
lyrics.c \
lyrics.h \
mtx.c \
mtx.h \
mtxline.c \
mtxline.h \
multfile.c \
multfile.h \
notes.c \
notes.h \
preamble.c \
preamble.h \
prepmx.c \
status.c \
status.h \
strings.h \
uptext.c \
uptext.h \
utility.c \
utility.h
EXTRA_DIST = \
analyze.pas \
control.pas \
files.pas \
globals.pas \
lyrics.pas \
mtx.pas \
mtxline.pas \
multfile.pas \
notes.pas \
preamble.pas \
prepmx.pas \
status.pas \
strings.pas \
uptext.pas \
utility.pas
LDADD = libp2c.a
noinst_LIBRARIES = libp2c.a
libp2c_a_SOURCES = \
libp2c/p2c.h \
libp2c/p2clib.c
## Tests
##
TESTS = mtx.test
EXTRA_DIST += $(TESTS)
## mtx.test
EXTRA_DIST += tests/mozart.mtx tests/mozart.pmx Makefile.orig Bugs Corrections ChangeLog.C
EXTRA_DIST += configure.ac Makefile.am
DISTCLEANFILES = mozart*
|