]> git.donarmstrong.com Git - lilypond.git/blobdiff - GNUmakefile.in
2002-08-08 Rune Zedeler <rune@zedeler.dk>
[lilypond.git] / GNUmakefile.in
index fd8539abdb92420bad538a239e7356c0ce4ad6b3..b5958109610f94b7f68d088aee65d013237bdda5 100644 (file)
@@ -10,7 +10,7 @@ depth = .
 # 
 SUBDIRS = buildscripts scripts flower lily \
        mf ly tex ps scm \
-       python po make intl \
+       python po make \
        cygwin debian $(builddir)/stepmake \
        Documentation input
 #
@@ -21,7 +21,7 @@ README_TXT_FILES = AUTHORS.txt README.txt INSTALL.txt FAQ.txt
 IN_FILES := $(wildcard *.in)
 EXTRA_DIST_FILES = $(wildcard *.el) vimrc VERSION $(README_FILES)  $(SCRIPTS) $(IN_FILES)  emacsclient.patch lexer-gcc-3.0.patch darwin.patch .cvsignore  lexer-gcc-3.1.sh 
 NON_ESSENTIAL_DIST_FILES = $(README_TXT_FILES)
-INSTALLATION_DIR=$(datadir)
+INSTALLATION_DIR=$(local_lilypond_datadir)
 INSTALLATION_FILES=$(configuration) VERSION
 
 # bootstrap stepmake:
@@ -60,12 +60,19 @@ my_tfm_path = $(TFM_PATH) /tmp /tmp /tmp /tmp /tmp /tmp
 
 
 local-install:
-       $(INSTALL) -d $(datadir)
+       $(INSTALL) -d $(local_lilypond_datadir)
 ifeq ($(KPATHSEA),0)
-       $(foreach i, 1 2 3 4 5, rm -f $(datadir)/tfm.$(i); $(LN_S) $(word $(i), $(my_tfm_path)) $(datadir)/tfm.$(i) ; )
+       $(foreach i, 1 2 3 4 5, rm -f $(local_lilypond_datadir)/tfm.$(i); $(LN_S) $(word $(i), $(my_tfm_path)) $(local_lilypond_datadir)/tfm.$(i) ; )
 endif
 
 
+final-install:
+       @echo
+       @echo " *** Before running, buildscripts/out/lilypond-{profile,login}"
+       @echo " *** must be run. You're advised to source these scripts from your "
+       @echo " *** login scripts. For more information, see Invoking LilyPond in the manual."
+       @echo 
+
 TOP_HTMLS = index.html examples.html
 
 examples: web-reqs
@@ -110,37 +117,46 @@ top-WWW-clean:
 
 WWW:
 
-default: builddir-setup
+default: $(config_h) builddir-setup
 
-builddir-setup: $(builddir)/share/lilypond/$(TOPLEVEL_VERSION)-force
+builddir-setup: $(builddir)/share/lilypond-force
 
-$(builddir)/share/lilypond/$(TOPLEVEL_VERSION)-force:
-       # Preparing LilyPond tree for builddir exec
+$(builddir)/share/lilypond-force:
+# Preparing LilyPond tree for builddir exec
        @echo Making $(builddir)/share 
        @cd $(builddir) && rm -rf share
-       @cd $(builddir) && mkdir -p share/lilypond
-       @cd $(builddir)/share/lilypond && mkdir -p $(TOPLEVEL_VERSION)
-       @cd $(builddir)/share/lilypond/$(TOPLEVEL_VERSION) && \
+       @mkdir -p $(builddir)/share/lilypond
+       @mkdir -p $(builddir)/share/lilypond/fonts
+       @mkdir -p $(builddir)/share/lilypond/tex
+       @cd $(builddir)/share/lilypond && \
                ln -s $(abs-srcdir)/ly ly && \
-               ln -s ../../../mf/$(outconfbase) dvips && \
-               ln -s ../../../mf/$(outconfbase) afm && \
-               ln -s ../../../mf/$(outconfbase) tfm && \
+               ln -s ../../mf/$(outconfbase) dvips && \
+               ln -s ../../mf/$(outconfbase) afm && \
+               ln -s ../../mf/$(outconfbase) tfm && \
                ln -s $(abs-srcdir)/mf && \
                ln -s $(abs-srcdir)/ps && \
                ln -s $(abs-srcdir)/scm
-       @cd $(builddir)/share/lilypond/$(TOPLEVEL_VERSION) && \
-               mkdir tex
-       @cd $(builddir)/share/lilypond/$(TOPLEVEL_VERSION)/tex && \
+       @cd $(builddir)/share/lilypond/tex && \
                ln -s $(abs-srcdir)/tex source && \
-               ln -s ../../../../mf/$(outconfbase) generate
-       @cd $(builddir)/share/lilypond/$(TOPLEVEL_VERSION) && \
-               mkdir fonts
-       @cd $(builddir)/share/lilypond/$(TOPLEVEL_VERSION)/fonts && \
+               ln -s ../../../mf/$(outconfbase) generate
+       @cd $(builddir)/share/lilypond/fonts && \
                ln -s $(abs-srcdir)/mf source && \
-               ln -s ../../../../mf/$(outconfbase) afm && \
-               ln -s ../../../../mf/$(outconfbase) tfm && \
-               ln -s ../../../../mf/$(outconfbase) type1
+               ln -s ../../../mf/$(outconfbase) afm && \
+               ln -s ../../../mf/$(outconfbase) tfm && \
+               ln -s ../../../mf/$(outconfbase) type1
 
 local-clean: builddir-setup-clean
 builddir-setup-clean:
        @cd $(builddir) && rm -rf share
+
+$(config_h): configure
+#
+# this is to prevent people from getting
+# undefined symbols  when we add them to config.h.in,
+# and they blindly run "cvs update; make".
+#
+       @echo
+       @echo ' *** config.h file is out of date'
+       @echo ' *** Rerun configure or autogen.sh'
+       @echo
+       @false