diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-10-26 01:07:22 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-10-26 01:07:22 +0000 |
commit | f2ce20a66e0ab9abb0128458aa0e6f6e2052881f (patch) | |
tree | c4ebd4593d37c73ef8ec5fa17ee1dfe229ca9afa /Makeconf | |
parent | bb23a3b7ac9c2d0e74613de904e5e8a19e5038b5 (diff) |
Fri Oct 25 20:17:47 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* Makeconf (%.prof_d): Don't set no-deps.
(.prof_d inclusion): Don't do it if prof-depend=t.
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -423,8 +423,10 @@ ifneq ($(no_deps),t) -include $(subst User.o,.miguh_d,$(filter %User.o,$(OBJS))) /dev/null ifneq ($(makemode),library) +ifneq ($(prof-depend),t) -include $(addsuffix .prof_d,$(target)) /dev/null endif +endif # For each .o file we need a .d file. -include $(subst .o,.d,$(filter %.o,$(OBJS))) /dev/null @@ -453,7 +455,7 @@ endif sed -e 's/User\.c/_U\.h/' -e 's/migu_d/miguh_d/' < $< > $@ %.prof_d: Makefile - $(MAKE) $* prof-depend=t no_deps=t + $(MAKE) $* prof-depend=t ifeq ($(prof-depend),t) $(target): %: FORCE |