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
|
SUBDIRS = pixmaps po intl
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config.h.in \
stamp-h.in \
config.guess mkinstalldirs \
missing install-sh config.sub \
acinclude.m4 config.log \
depcomp
bin_PROGRAMS = denemo
denemo_SOURCES = articulations.c calculatepositions.c changenotehead.c \
chordops.c clefdialog.c commandfuncs.c contexts.c draw.c \
drawaccidentals.c drawclefs.c drawcursor.c drawkey.c drawdynamic.c \
drawlilydir.c drawnotes.c barline.c\
drawselection.c drawstemdir.c drawtimesig.c drawtuplets.c dynamic.c \
exportabc.c exportmudela.c exportxml.c file.c frogio.c gcs.c \
headerdialog.c hairpin.c help.c importxml.c \
kbd-custom.c kbd-interface.c keyresponses.c keysigdialog.c \
lilydirectives.c frogparser.c froglexer.c \
lyparserfuncs.c main.c measureops.c midi.c moveviewport.c mousing.c \
mwidthdialog.c objops.c exportmidi.c instrumentname.c\
playback.c playbackprops.c prefdialog.c prefops.c processstaffname.c \
scoreops.c selectops.c staffheightdialog.c staffops.c staffpropdialog.c \
slurs.c timedialog.c tomeasuredialog.c tupletops.c utils.c graceops.c \
drawgrace.c analysis_highlighting.c\
print.c \
easylyparser.y \
accwidths.h articulations.h calculatepositions.h changenotehead.h chordops.h \
commandfuncs.h \
contexts.h datastructures.h dynamic.h dialogs.h draw.h drawingprims.h \
easylyparser.h exportabc.h exportmudela.h exportxml.h file.h frogio.h frogdefs.h gcs.h \
hairpin.h help.h importxml.h kbd-custom.h kbd-interface.h graceops.h \
keyresponses.h lilydirectives.h lyparserfuncs.h measureops.h midi.h \
mousing.h moveviewport.h notewidths.h objops.h frogparser.h \
playbackprops.h prefops.h processstaffname.h redefs.h \
scoreops.h selectops.h staffops.h slurs.h twoints.h tupletops.h utils.h \
exportxml.h xmldefs.h exportmidi.h instrumentname.h analysis_highlighting.h \
frogparser.h barline.h print.h
localedir = $(datadir)/locale
INCLUDES = -I../intl -I$(top_srcdir)/intl -DLOCALEDIR=\"$(localedir)\" \
-DPKGDATADIR=\"$(pkgdatadir)/\"
denemo_LDADD = $(INTLLIBS)
pkgdata_DATA = denemo.conf denemo.keymaprc english.keymaprc french.keymaprc
EXTRA_DIST = DESIGN GOALS @PACKAGE@.spec.in denemo.conf frogparser.y \
froglexer.l $(pkgdata_DATA)
frogparser.c frogpparser.h: frogparser.y
bison -d -pfrog $(srcdir)/frogparser.y -o $(srcdir)/frogparser.c
froglexer.c: froglexer.l
flex -Pfrog -o$(srcdir)/froglexer.c $(srcdir)/froglexer.l
easylyparser.c: easylyparser.y
bison -d -ply $(srcdir)/easylyparser.y -o $(srcdir)/easylyparser.c
dist-hook: @PACKAGE@.spec
cp $(srcdir)/@PACKAGE@.spec $(distdir)
|