summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2004-12-02 17:12:04 +0100
committerNiels Möller <nisse@lysator.liu.se>2004-12-02 17:12:04 +0100
commit788345f3c59dbc11f238e33182684354409379ce (patch)
treeb0ea7811ac8566be16a59ec338face8f338124d7 /Makefile.in
parentd5eaf91f1e70ea41bb6b7e3cba9dc12cf5b7781f (diff)
downloadnettle-788345f3c59dbc11f238e33182684354409379ce.tar.gz
(all check install uninstall)
(clean distclean mostlyclean maintainer-clean): Don't use the -C flag when invoking make, for compatibility with Solaris make. Rev: src/nettle/ChangeLog:1.313 Rev: src/nettle/Makefile.in:1.18
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index aa3e8668..1f616450 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -19,10 +19,12 @@ TARGETS = aesdata$(EXEEXT) desdata$(EXEEXT) shadata$(EXEEXT) \
all check install uninstall:
$(MAKE) $@-here
- set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
+ set -e; for d in $(SUBDIRS); do \
+ echo "Making $@ in $$d" ; (cd $$d && $(MAKE) $@); done
clean distclean mostlyclean maintainer-clean:
- set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
+ set -e; for d in $(SUBDIRS); do \
+ echo "Making $@ in $$d" ; (cd $$d && $(MAKE) $@); done
$(MAKE) $@-here
check-here: