forked from mkoloberdin/pasmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
86 lines (74 loc) · 1.15 KB
/
Makefile.am
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
82
83
84
85
86
# Makefile.am for Pasmo
srcdir = @srcdir@
VPATH = @srcdir@
bin_PROGRAMS = pasmo
pasmo_SOURCES = \
asm.h \
asm.cpp \
asmfile.h \
asmfile.cpp \
asmimpl.h \
asmimpl.cpp \
asmimplparse.cpp \
asmreal.h \
asmreal.cpp \
codeaux.h \
codeaux.cpp \
cpc.h \
cpc.cpp \
local.h \
local.cpp \
machine.h \
machine.cpp \
macro.h \
macro.cpp \
macroframe.h \
macroframe.cpp \
module.h \
module.cpp \
nullstream.h \
nullstream.cpp \
parser.yxx \
parseraux.h \
parseraux.cpp \
parsertypes.h \
pasmo.cpp \
pasmoimpl.h \
pasmotypes.h \
pasmotypes.cpp \
relfile.h \
relfile.cpp \
segment.h \
segment.cpp \
simpleinst.h \
simpleinst.cpp \
spectrum.h \
spectrum.cpp \
tap.h \
tap.cpp \
token.h \
token.cpp \
trace.h \
trace.cpp \
tzx.h \
tzx.cpp \
value.h \
value.cpp \
var.h \
var.cpp
BUILT_SOURCES = parser.h parser.cxx
AM_YFLAGS = -d
tgz: dist
cp $(distdir).tar.gz $(distdir).tgz
rpm: dist
rpm -ta $(distdir).tar.gz
#*************************************************
EXTRA_DIST = \
bootstrap autogen.sh \
do_conf \
do_confnodeb \
do_conf0 \
do_confmingw \
pasmodoc.html
ACLOCAL_AMFLAGS = -I .
# End of Makefile.am for Pasmo