]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/GNUmakefile
* scm/lily.scm (completize-formats): new function
[lilypond.git] / lily / GNUmakefile
index 0a05b2684968ebd32c77b39796a6290ea2f0e66e..6e964e038f29c9f6969478ce044fe189706ed106 100644 (file)
@@ -1,72 +1,40 @@
-# lilypond/GNUmakefile
-#
-# This file helps maintainers to keep their Makefile.am automatically
-# up to date using GNU make features.
-# If you don't have (or run) GNU make, Makefile.am will not be updated
-# automatically when source files are added/removed.
-
-# automake/wild-make should generate this file from Makefile.am.wild
-
-#ugh
-Makefile=$(wildcard Makefile)
-# are we configured here, or are we using --srcdir
-ifeq ($(Makefile),Makefile)
-
-include Makefile
-
-biltdir=.
-
-else
-
-#ugh
-biltdir=../../build/lily
 
-make-in-build: wild-check
-       echo exec $(MAKE) -C $(biltdir)
-       exec $(MAKE) -C $(biltdir)
+depth = ..
 
-include $(biltdir)/Makefile
+NAME = lilypond
+SUBDIRS = include
 
-clean: wild-check
-       exec $(MAKE) -C $(biltdir) $@
+MODULE_LIBS=$(depth)/flower 
+MODULE_INCLUDES= $(depth)/flower/include
+MODULE_CXXFLAGS= 
 
-dist: wild-check
-       exec $(MAKE) -C $(biltdir) $@
 
-distclean: wild-check
-       exec $(MAKE) -C $(biltdir) $@
+HELP2MAN_EXECS = lilypond
+STEPMAKE_TEMPLATES= c++ executable po help2man
 
-lexer.cc: wild-check
-       exec $(MAKE) -C $(biltdir) $@
+include $(depth)/make/stepmake.make 
 
-parser.hh: wild-check
-       exec $(MAKE) -C $(biltdir) $@
-
-parser.cc: wild-check
-       exec $(MAKE) -C $(biltdir) $@
-
-#ugh OMIT_DEPENDENCIES does not seem to work
-.deps/lexer.P:
-       exec $(MAKE) -C $(biltdir) $@
+# for profiling, link guile statically:
+#
+# USER_LDFLAGS += -static -lltdl -ldl
+#
 
-.deps/parser.P:
-       exec $(MAKE) -C $(biltdir) $@
+ETAGS_FLAGS += --regex='{c++}/^LY_DEFINE *(\([^,]+\)/\1/'
+ETAGS_FLAGS += --regex='{c++}/^LY_DEFINE *([^"]*"\([^"]+\)"/\1/'
 
-endif
+default:
 
-# Makefile.am.wild: lilypond_SOURCES = $(wildcard *.cc *.ll *.yy)
-# ugh
-CURRENT_lilypond_SOURCES = $(wildcard *.cc lexer.ll parser.yy)
+# 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)/lexer.o: $(outdir)/parser.hh $(outdir)/version.hh
 
-# ugh: stupid lexer.cc/parser.cc cluttering sourcedir!
-wild-check: check-lilypond-sources
+$(outdir)/kpath.o: $(outdir)/version.hh
+$(outdir)/lily-guile.o: $(outdir)/version.hh
+$(outdir)/lily-version.o: $(outdir)/version.hh
 
-check-lilypond-sources:
-ifneq ($(lilypond_SOURCES),$(filter-out $(IGNORE_WILDCARDS), $(CURRENT_lilypond_SOURCES)))
-       @echo \"$(lilypond_SOURCES)\"
-       @echo \"$(CURRENT_lilypond_SOURCES)\"
-       @echo  lilypond_SOURCES changed: rerunning make-wild.
-       @-rm -f Makefile.am
-       $(PERL) $(top_srcdir)/bin/wild-perl < Makefile.am.wild > Makefile.am
+# ugh.  For --srcdir builds, these must exist to satisfy their broken
+# lexer.dep and parser.dep file entries.
+ifneq ($(srcdir), .)
+.PRECIOUS: $(outdir)/lexer.cc $(outdir)/parser.cc
 endif
-