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
|
# Makefile.am for Pasmo
bin_PROGRAMS = pasmo
pasmo_SOURCES = \
asm.h \
asm.cpp \
asmfile.h \
asmfile.cpp \
cpc.h \
cpc.cpp \
pasmo.cpp \
pasmotypes.h \
pasmotypes.cpp \
spectrum.h \
spectrum.cpp \
tap.h \
tap.cpp \
token.h \
token.cpp \
tzx.h \
tzx.cpp
tgz: dist
cp $(distdir).tar.gz $(distdir).tgz
rpm: dist
rpm -ta $(distdir).tar.gz
EXAMPLE_ASM = \
align.asm \
all.asm \
allb.asm \
alocal.asm \
bad.asm \
black.asm \
callvers.asm \
defb.asm \
echovers.asm \
fill8k.asm \
hellocpc.asm \
hellocpm.asm \
hellospec.asm \
hilo.asm \
hola.asm \
if.asm \
include.asm \
indent.asm \
jumptable.asm \
lee.asm \
limit64.asm \
local.asm \
macro.asm \
mas.asm \
protector.asm \
rept.asm \
reserv.asm \
showfcb.asm \
showkeys.asm \
showline.asm \
t86.asm \
test.asm \
tmacro.asm \
undoc.asm
EXTRA_DIST = \
bootstrap autogen.sh \
pasmodoc.html \
$(EXAMPLE_ASM)
ACLOCAL_AMFLAGS = -I .
# End of Makefile.am for Pasmo
|