]> git.donarmstrong.com Git - lilypond.git/blobdiff - make/Targets.make
release: 0.1.59
[lilypond.git] / make / Targets.make
index 884eef7846ed1dfd2c5c8089344f142803450c71..c696163f145b32bc013165fc5e166dc9e47fc1c0 100644 (file)
 #
 # project  LilyPond -- the musical typesetter
-# title           generic make rules
-# file    make/Rules.make
+# title           generic make targets
+# file    make/Targets.make
 #
 # Copyright (c) 1997 by    
 #      Jan Nieuwenhuizen <jan@digicash.com>
 #      Han-Wen Nienhuys <hanwen@stack.nl>
 
-.PHONY : all clean default dist doc doc++ dummy exe help lib tags
+.PHONY : all clean config default dist doc doc++ dummy exe help lib TAGS html\
+       check-flower-deps check-lib-deps check-doc-deps
 
 # target all:
 #
 all:    default
-       for i in $(SUBDIRS); do $(MAKE) -C $$i all; done
-#
-
+       $(LOOP)
 # dependency list of executable:
 #
-EXECUTABLE = $(bindir)/$(NAME)
-$(EXECUTABLE): $(OFILES) $(CUSTOMLIBES)
-#      $(STRIPDEBUG) $(STABLEOBS)
-#      $(LD_COMMAND) -o $@ $^ $(LOADLIBES)
+
+$(EXECUTABLE): $(configheader) $(OFILES) $(outdir)/version.hh
+ifdef MODULE_LIBDEPS
+       $(MAKE) $(MODULE_LIBDEPS)
+endif
+ifdef STABLEOBS
+       $(DO_STRIP) $(STABLEOBS)
+endif
        $(LD_COMMAND) $(OFILES) $(LOADLIBES)
-       touch $(VERSION_DEPENDENCY)
-       $(INCREASE_BUILD)
-       touch $(build) #waai necessary?
-#
+
 exe: $(EXECUTABLE)
-#
+
 
 # dependency list of library:
 #
-LIBRARY = $(libdir)/$(LIB_PREFIX)$(NAME)$(LIB_SUFFIX)
-$(LIBRARY): $(OFILES) $(CUSTOMLIBES)
+$(LIBRARY): $(configheader) $(OFILES)
        $(AR_COMMAND) $(OFILES)
-       touch $(VERSION_DEPENDENCY)
-       $(INCREASE_BUILD)
-       touch $(build) #waai necessary?
+       $(RANLIB_COMMAND)
+
+$(SHAREDLIBRARY):  $(configheader) $(OFILES) $(MODULE_LIBDEPS)
+       $(LD_COMMAND) $(OFILES) -o $@.$(VERSION)
+       rm -f $@
+       ln -sf $(outdir)/$(LIB_PREFIX)$(NAME).so.$(VERSION) $@.$(MAJOR_VERSION)
+       ln -sf $(LIB_PREFIX)$(NAME).so.$(VERSION) $@
+
 #
 lib: $(LIBRARY)
 #
 
-clean:
-       rm -f $(allexe) core $(allobs) 
-       for i in $(SUBDIRS); do $(MAKE) -C $$i clean; done
 
-distclean: clean
-       rm -rf  $(lily-version) $(flower-version) .b $(build) .GENERATE *~ $(allout)
+outdirs: outdir
+       $(LOOP)
+
+outdir:
+       -mkdir $(outdir)
+
+# be careful about deletion.
+clean: localclean
+       -rm -f $(outdir)/*
+       touch $(outdir)/dummy.dep
+       $(LOOP)
+
+distclean: clean 
+       $(LOOP)
+       $(MAKE) local-distclean
+
+maintainerclean: 
+       $(LOOP)
+       $(MAKE) local-maintainerclean
+       $(MAKE) local-distclean
+
 
 
 # configure:
 #
 config:
-       $(bindir)/configure
+       ./$(depth)/configure
+#
+
+# dummydeps:
+#
+dummydep: $(DUMMYDEPS)
 #
 
-# value of $(OSTYPE) on windhoos; "make $OSTYPE" if you use bash :-)
+# value of $(OSTYPE) on windhoos...; "make $OSTYPE" if you use bash :-)
+#
+win32:  windows32 # win/lose?
 #
-win32: 
-       $(MAKE) -C . CXX=g++ 
+windows32:
+       $(MAKE) -C . "CXX=g++ -D_WINDOWS32"
 #
 
 # xcompile to doze:
 #
 doze:  dos
 dos: 
-       $(MAKE) -C . CXX="gcc-go32 -I/usr/i386-go32/include -I/usr/i386-go32/include/g++ -D_WIN32 -Dcaddr_t=char* -DMAP_SHARED=0"
+       $(MAKE) -C . CXX="gcc-go32 -I/usr/i386-go32/include -I/usr/i386-go32/include/g++ -D_WINDOWS32 -Dcaddr_t=char* -DMAP_SHARED=0"
 #
 
 # target help:
 #
 help:
+       @echo "Makefile for LilyPond $(TOPLEVEL_VERSION)"
        @echo "Usage:"
        @echo " $(MAKE) ["VARIABLE=value" ...] [target]"
        @echo
        @echo "targets:"
        @echo " all clean config dist distclean doc doc++"
-       @echo " exe help lib moduledist tags"
+       @echo " exe help lib TAGS"
        @echo " dos:    xcomplile to dos"
-       @echo " win32:  native cygnus-win32 compile" 
+       @echo " windows32: native cygnus-gnu compile" 
 #
 
 doc:
-       $(MAKE) -C Documentation do-doc
+       $(MAKE) -C $(depth)/Documentation do-doc
 
-# doc++ documentation of classes
-doc++: $(progdocs)     
-       doc++ -kp -d $(DOCDIR) $^
 
+# ugh. should generate in out/
 dist:
+       rm -rf $(distdir)
        -mkdir $(distdir)
        $(MAKE) localdist
-       (cd ./$(depth); tar cfz $(DIST_NAME).tar.gz $(DIST_NAME))
-       rm -rf $(distdir)/  # should be trapped
+       chmod -R a+r $(distdir)
+       chmod  a+x `find $(distdir) -type d -print`
 
-localdist:
-       ln $(DISTFILES) $(distdir)/$(localdir)
-       for i in $(SUBDIRS); do mkdir $(distdir)/$(localdir)/$$i; done
-       for i in $(SUBDIRS); do $(MAKE) localdir=$(localdir)/$$i -C $$i localdist; done
+       (cd ./$(depth)/$(outdir); $(TAR) cf - $(DIST_NAME) | gzip -9 > $(DIST_NAME).tar.gz)
 
-moduledist:
-       -mkdir $(module-distdir)
-       $(MAKE) localmoduledist
-       (cd ./$(depth); tar cfz $(MODULE_DIST_NAME).tar.gz $(MODULE_DIST_NAME))
-       rm -rf $(module-distdir)/  # should be trapped
+# should be trapped
+       rm -rf $(distdir)/
 
-localmoduledist:
-       ln $(DISTFILES) $(module-distdir)/$(localdir)
-       for i in $(SUBDIRS); do mkdir $(module-distdir)/$(localdir)/$$i; done
-       for i in $(SUBDIRS); do $(MAKE) localdir=$(localdir)/$$i -C $$i localmoduledist; done
-
-all-tags: tags
-       for i in $(SUBDIRS); do $(MAKE) -C $$i all-tags; done
+# ugh. should generate in out/
+dozedist: doosdist
+doosdist:
+       -mkdir $(distdir)
+#      nogo, SUBDIRS is handed down to subdir...
+#      $(MAKE) SUBDIRS="Documentation init input tex" localdist
+       $(MAKE) localdist
+       chmod -Rf a+rX $(distdir)
+#      ugh, the ugly way, then
+       (cd $(distdir); rm -rf $(NO_DOOS_DIST))
+       cp $(lilyout)/lilypond.exe $(distdir)
+       strip -s $(distdir)/lilypond.exe
+       cp $(mi2muout)/mi2mu.exe $(distdir)
+       strip -s $(distdir)/mi2mu.exe
+       (cd ./$(depth); $(ZIP) $(DIST_NAME).exe.zip $(distdir))
+# should be trapped
+       rm -rf $(distdir)/
+
+
+localdist: $(DISTFILES) $(OUT_DISTFILES)
+       touch $(outdir)/dummy.dep; \
+       mkdir $(distdir)/$(localdir)/out; \
+       $(LN) $(DISTFILES) $(distdir)/$(localdir)
+       $(LN) $(outdir)/dummy.dep $(OUT_DISTFILES) $(distdir)/$(localdir)/out
+ifdef SUBDIRS
+       set -e; for i in $(SUBDIRS); do mkdir $(distdir)/$(localdir)/$$i; \
+               $(MAKE) localdir=$(localdir)/$$i -C $$i localdist; done
+endif
+
+
+TAGS:$(all-tag-sources)
+ifdef all-tag-sources
+       -etags -CT $(all-tag-sources) $(ERROR_LOG)
+       -ctags -CT $(all-tag-sources) $(ERROR_LOG)
+endif
+       $(LOOP)
 
-tags:
-       etags -CT $(allcc) 
 
 # version stuff:
 #
-check-flower-version:
-       $(MAKE) flower-version -C ./$(depth)/flower
-$(lily-version): ./$(depth)/.version ./$(bindir)/make_version $(build)
-       ./$(bindir)/make_version "$(MAJOR_VERSION)" "$(MINOR_VERSION)" "$(PATCH_LEVEL)" "$(MY_PATCH_LEVEL)" "$(BUILD)" "$(CXX) $(CXXVER)" > $@
+
+$(outdir)/version.hh: VERSION
+       sh ./$(lily_bindir)/make-version.sh > $@
+
+
+# should this be in Rules?
+configure: configure.in aclocal.m4
+       autoconf - < $<> $@
+       chmod +x configure
+
+localclean:
+
+local-distclean:
+
+local-maintainerclean:
+
+install-strip:
+       $(MAKE) INSTALL="$(INSTALL) -s" install
+
+install: localinstall
+       $(LOOP)
+
+localinstall:
+
+uninstall: localuninstall
+       $(LOOP)
+
+localuninstall:
+
+# specific stuff:
+#
+$(LIBFLOWER): check-flower-deps
+
+check-flower-deps:
+       $(MAKE)  -C $(depth)/flower/ default
+
+check-lib-deps: check-flower-deps
+       $(MAKE)  -C $(depth)/lib
+
+check-doc-deps:
+       $(MAKE) -C $(depth)/Documentation
+
+$(LIBLILY): dummy
+       $(MAKE) ./$(outdir)/$(@F) -C $(depth)/lib
+
+
+# RedHat rpm package:
 #
+rpm: check-rpm-doc-deps
+       -cp $(depth)/lilypond-$(TOPLEVEL_VERSION).tar.gz $(rpm-sources)
+#      -cp $(wildcard $(depth)/Documentation/*.xpm) $(rpm-sources)
+       -cp $(wildcard $(depth)/Documentation/$(outdir)/*.gif) $(rpm-sources)
+       $(MAKE) -C $(make-dir) spec
+       rpm -ba $(makeout)/lilypond.spec
+
+check-rpm-doc-deps: 
+       $(MAKE) -C $(depth)/Documentation gifs
+
+check-mf-deps:
+       $(MAKE) -C $(depth)/mf
+
+$(configheader): $(depth)/$(configuration).hh
+       cp $< $@
+
+
 
+ifneq ($(DEPFILES),)
+include $(DEPFILES)
+endif