summaryrefslogtreecommitdiff
path: root/Makeconf
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1996-10-08 16:19:05 +0000
committerThomas Bushnell <thomas@gnu.org>1996-10-08 16:19:05 +0000
commit861fc38dcf092f40bd30f1073be408950cd40475 (patch)
treecd2e969bc68a3eb28fc68cf0e2beacfcf1d87c3b /Makeconf
parent32a0824064e9297942034dc0e284522b5ba76d4c (diff)
Fri Oct 4 17:52:54 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* Makeconf ($(..)$(dir).d): Always include libhurdbugaddr in the list for non-libraries.
Diffstat (limited to 'Makeconf')
-rw-r--r--Makeconf6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makeconf b/Makeconf
index 709a5b18..42fca7b3 100644
--- a/Makeconf
+++ b/Makeconf
@@ -240,10 +240,14 @@ $(libname).so: $(patsubst %.o,%_pic.o,$(OBJS)) $(library_deps)
endif
# Providing directory dependencies
+ifneq ($(makemode),library)
+hurd-bug-addr-dir-dep = libhurdbugaddr
+endif
+
directory-depend: $(..)$(dir).d
$(..)$(dir).d: $(srcdir)/Makefile
rm -f $@
- echo $(dir): $(addprefix lib,$(HURDLIBS)) > $@
+ echo $(dir): $(hurd-bug-addr-dir-dep) $(addprefix lib,$(HURDLIBS)) > $@
# Making a snapshot
distfiles = Makefile ChangeLog $(SRCS) $(LCLHDRS) $(DIST_FILES)