]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.44
authorfred <fred>
Sun, 24 Mar 2002 19:36:16 +0000 (19:36 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:36:16 +0000 (19:36 +0000)
flower/include/path.hh
make/Variables.make

index bc4d9f3776c58abde644f69a0ebea7ab9cbe342c..0bed543538b9666e537dd5286aa41619249eb24e 100644 (file)
@@ -17,7 +17,7 @@ class File_path : private Array<String>
 {
 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<String>::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
index 8c54e9fba05f302f1da911275a60ac35ae614673..abe60c7a9a7dbbb8dfdcfa3a8abca5cda346b6c7 100644 (file)
@@ -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)