blob: 65b2e8564546238f5e86f32c445378a4624459e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
bin_PROGRAMS = autosp rebar tex2aspc
autosp_SOURCES = utils.h utils.c autosp.h autosp.c process_score.h process_score.c \
process_command.h process_command.c status.c spacing_note.c xtuplet.c
rebar_SOURCES = utils.h utils.c rebar.c
tex2aspc_SOURCES = utils.h utils.c tex2aspc.c
AM_CFLAGS = -fno-common -O4 -ansi -Wall -Wextra -pedantic-errors -Werror
dist_man_MANS = autosp.1 rebar.1 tex2aspc.1
## Tests
##
TESTS = autosp.test rebar.test tex2aspc.test
EXTRA_DIST =
EXTRA_DIST += $(TESTS)
DISTCLEANFILES =
EXTRA_DIST += tests/quod2.aspc tests/quod2.tex tests/quod3.aspc tests/quod4.tex tests/quod4.aspc
DISTCLEANFILES += quod2.* quod3.* quod4.*
|