Add a missing $(deps_subdir) before a reference to library.dep,

Estimated hours taken: 0.1

Mmakefile:
	Add a missing $(deps_subdir) before a reference to library.dep,
	so that it works with --use-subdirs.
	It already had the $(dep_subdir) in front of all the
	references to compiler.dep and profiler.dep, I had just
	accidentally missed on occurrence for library.dep.
This commit is contained in:
Fergus Henderson
1998-06-01 01:28:14 +00:00
parent f20cd077ad
commit 111ba0a31e

View File

@@ -42,7 +42,7 @@ dep: dep_library dep_compiler dep_profiler
.PHONY: dep_library
dep_library: library/$(deps_subdir)library.dep
library/library.dep:
library/$(deps_subdir)library.dep:
cd library && $(SUBDIR_MMAKE) depend
.PHONY: dep_compiler