From: fred Date: Sun, 24 Mar 2002 19:36:16 +0000 (+0000) Subject: lilypond-0.0.44 X-Git-Tag: release/1.5.59~5133 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=976dbf00cc033a1ec531df8baff935e2f2a95c9e;p=lilypond.git lilypond-0.0.44 --- diff --git a/flower/include/path.hh b/flower/include/path.hh index bc4d9f3776..0bed543538 100644 --- a/flower/include/path.hh +++ b/flower/include/path.hh @@ -17,7 +17,7 @@ class File_path : private Array { public: /// locate a file in the search path - String find(String nm); + String find(String nm)const; /// construct using prefix. Normally argv[0]. File_path(String); @@ -26,7 +26,13 @@ public: Array::push; void add(String str) { push(str); } }; -/// split path into its components +/** split a path into its components. + + @params path + + @return + String & drive, String &dirs, String &filebase, String &extension + */ void split_path(String path, String &drive, String &dirs, String &filebase, String &extension); #endif diff --git a/make/Variables.make b/make/Variables.make index 8c54e9fba0..abe60c7a9a 100644 --- a/make/Variables.make +++ b/make/Variables.make @@ -95,6 +95,7 @@ DUMMYDEPS=\ ERROR_LOG = 2> /dev/null SILENT_LOG = >& /dev/null allexe = $(lily_bindir)/lilypond $(lily_bindir)/mi2mu +allhh := $(shell $(FIND) -name "*.hh" $(ERROR_LOG)) allcc := $(shell $(FIND) -name "*.cc" $(ERROR_LOG)) allobs := $(shell $(FIND) $(outdir) -name "*.o" $(ERROR_LOG)) allibs := $(shell $(FIND) $(libdir) -name "*.lib" $(ERROR_LOG)) @@ -121,7 +122,7 @@ CXXFLAGS = $(CFLAGS) $(USER_CXXFLAGS) $(EXTRA_CXXFLAGS) INCLUDES = -Iinclude -I$(outdir) -I$(include-lib) -I$(libout) -I$(include-flower) -I$(flowerout) CXX_OUTPUT_OPTION = $< -o $@ LDFLAGS = $(EXTRA_LDFLAGS) -LOADLIBES = $(EXTRA_LIBES) $(CUSTOMLIBES) -lg++ +LOADLIBES = $(EXTRA_LIBES) $(CUSTOMLIBES) # # librarian: @@ -168,3 +169,7 @@ LIBRARY = $(LIB_PREFIX)$(NAME)$(LIB_SUFFIX) STRIPDEBUG=true #replace to do stripping of certain objects DISTFILES=$(EXTRA_DISTFILES) Makefile $(ALL_SOURCES) +DOCDIR=$(depth)/doc++ + + +progdocs=$(allhh) $(allcc)