blob: 5d0ef26ba8e1641017440e2e58399a176c9119b5 (
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
|
# File: ./src/Makefile.am
# Package: pd-gfsm
# Description:
# + src-level automake file
#
# Process this file with Automake to create Makefile.in.
#-----------------------------------------------------------------------
#-----------------------------------------------------------------------
# Includes
#-----------------------------------------------------------------------
include $(top_srcdir)/common/pdexternal.am
#-----------------------------------------------------------------------
# Options & Subdirectories
#-----------------------------------------------------------------------
## --- recursion subdirectories
#SUBDIRS =
##-----------------------------------------------------------------------
## Pd Externals: hacked _PROGRAMS
##-----------------------------------------------------------------------
## --- externals
pdexterns_PROGRAMS = gfsm
## --- patches
pdexterns_DATA = \
gfsm_markov.pd
## --- documentation
pddoc_DATA = \
gfsm-help.pd \
gfsm_alphabet-help.pd \
gfsm_automaton-help.pd \
gfsm_state-help.pd \
gfsm_markov-help.pd
#-----------------------------------------------------------------------
# sources
#-----------------------------------------------------------------------
gfsm_SOURCES = \
config.h \
noconfig.h \
atom_alphabet.h atom_alphabet.c \
pd_alphabet.h pd_alphabet.c \
\
pd_automaton.h pd_automaton.c \
pd_algebra.c \
\
pd_state.h pd_state.c \
\
pd_io.h pd_io.c \
\
pd_gfsm.h pd_gfsm.c
noconfig.h: config.h.in
rm -f $@
cp $< $@
|