X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2FGNUmakefile;h=f525d1fc7c5d1cbd71a3aefac0c2ac25718044e4;hb=078703a6ab29f75983a55ac2cc35fe5f315da574;hp=13930b9e29d38fa8708d2082a7536817fe0bb5ee;hpb=07cba348de41ccb71a4707726b2f6c5510f33d49;p=lilypond.git diff --git a/lily/GNUmakefile b/lily/GNUmakefile index 13930b9e29..f525d1fc7c 100644 --- a/lily/GNUmakefile +++ b/lily/GNUmakefile @@ -4,39 +4,91 @@ depth = .. NAME = lilypond SUBDIRS = include -MODULE_LIBS=$(depth)/flower $(depth)/ttftool $(depth)/kpath-guile -MODULE_INCLUDES= $(depth)/flower/include $(depth)/ttftool/include -MODULE_CXXFLAGS= -MODULE_LDFLAGS= +MODULE_LIBS= $(depth)/flower $(depth)/kpath-guile +MODULE_INCLUDES= $(depth)/flower/include + +# need this to convert between function pointers and member function pointers. +MODULE_CXXFLAGS= -Wno-pmf-conversions HELP2MAN_EXECS = lilypond -STEPMAKE_TEMPLATES= c++ executable po help2man +STEPMAKE_TEMPLATES=c c++ executable po help2man + +OUT_DIST_FILES=$(addprefix $(outdir)/,parser.cc parser.hh ) include $(depth)/make/stepmake.make +ifeq ($(HAVE_LIBKPATHSEA_SO),no) +MODULE_LDFLAGS += $(KPATHSEA_LIBS) +endif +ifeq ($(LINK_GXX_STATICALLY),yes) +MODULE_LDFLAGS += -L$(outdir) -static-libgcc +endif + + + # for profiling, link guile statically: # -# USER_LDFLAGS += -static -lltdl -ldl +# CONFIG_LDFLAGS += -static -lltdl -ldl # +ifeq ($(PLATFORM_WINDOWS),yes) +WINDRES_FLAGS += -DLilyPond=0 -DLY=1 +O_FILES += $(outdir)/lilypond.rc.o +$(outdir)/lilypond: $(outdir)/lilypond.rc.o + +$(outdir)/lilypond.rc.o: $(outdir)/lilypond.ico $(outdir)/ly.ico +$(top-build-dir)/Documentation/pictures/$(outbase)/lilypond.ico: + $(MAKE) -C $(top-src-dir)/Documentation/pictures +$(outdir)/lilypond.ico: $(top-build-dir)/Documentation/pictures/$(outbase)/lilypond.ico + cp $< $@ +$(top-build-dir)/Documentation/pictures/$(outbase)/ly.ico: + $(MAKE) -C $(top-src-dir)/Documentation/pictures +$(outdir)/ly.ico: $(top-build-dir)/Documentation/pictures/$(outbase)/ly.ico + cp $< $@ +endif + ETAGS_FLAGS += --regex='{c++}/^LY_DEFINE *(\([^,]+\)/\1/' ETAGS_FLAGS += --regex='{c++}/^LY_DEFINE *([^"]*"\([^"]+\)"/\1/' default: + +$(outdir)/libstdc++.a: + rm -f $@ + ln -s `$(CXX) -print-file-name=libstdc++.a` $(outdir)/ + +ifeq ($(LINK_GXX_STATICALLY),yes) +$(outdir)/lilypond: $(outdir)/libstdc++.a +endif + # force these: Make can't know these have to be generated in advance $(outdir)/lily-parser.o: $(outdir)/parser.hh -$(outdir)/lily-lexer.o: $(outdir)/parser.hh +$(outdir)/lily-lexer.o: $(outdir)/parser.hh $(outdir)/FlexLexer.h $(outdir)/lexer.o: $(outdir)/parser.hh $(outdir)/version.hh +ifneq ($(FLEXLEXER_PATH),) +$(outdir)/FlexLexer.h: $(FLEXLEXER_PATH)/FlexLexer.h + cp $< $@ +endif + + + $(outdir)/general-scheme.o: $(outdir)/version.hh $(outdir)/kpath.o: $(outdir)/version.hh $(outdir)/lily-guile.o: $(outdir)/version.hh $(outdir)/lily-version.o: $(outdir)/version.hh +local-po: $(outdir)/parser.cc + # ugh. For --srcdir builds, these must exist to satisfy their broken # lexer.dep and parser.dep file entries. -ifneq ($(srcdir), .) +ifneq ($(configure-srcdir),.) .PRECIOUS: $(outdir)/lexer.cc $(outdir)/parser.cc endif + + +foe: + @echo b:$(build-dir) + @echo s:$(src-dir) + @echo t:$(tree-dir)