Skip to content
Snippets Groups Projects
Commit 4db1815b authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Pretty up the make depend code

parent d2ef362f
No related branches found
No related tags found
No related merge requests found
......@@ -161,7 +161,8 @@ depend: makeconfig
for i in $(SRCDIRS); do \
echo; echo "cd $$i; $(MAKE) $(MFLAGS) depend"; \
( cd $$i; $(MAKE) $(MFLAGS) depend ); \
done;
done;
@echo " "; echo Remember to \"make depend\" after each \"make makefiles\"
#
# rules to check out and in Make-template files
......@@ -353,9 +354,7 @@ Make-common: Make-common.dist
done; \
$(RM) .makefiles; \
touch .makefiles; \
$(RM) $$HDRFILE $$DEFSFILE \
echo "Please \"make depend\" before building."
$(RM) $$HDRFILE $$DEFSFILE
#
# rule to always build makefiles
......@@ -363,6 +362,7 @@ Make-common: Make-common.dist
makefiles: FORCE
$(RM) .makefiles
$(MAKE) $(MFLAGS) .makefiles
@echo "Please \"make depend\" before building."
#
# rule to create any tools we need to build everything else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment