aboutsummaryrefslogtreecommitdiffstats
path: root/make/otp_subdir.mk
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2011-06-28 10:45:32 +0200
committerBjörn Gustavsson <[email protected]>2011-08-08 11:59:07 +0200
commit1a8da16eab2c67f403be6b62844f059804bc6f41 (patch)
treec9e6da9d42c5da63cb3bf1359ab62262456b9b96 /make/otp_subdir.mk
parent8a933a9fccdd6cd734e5d2756a6dcb57180027b5 (diff)
downloadotp-1a8da16eab2c67f403be6b62844f059804bc6f41.tar.gz
otp-1a8da16eab2c67f403be6b62844f059804bc6f41.tar.bz2
otp-1a8da16eab2c67f403be6b62844f059804bc6f41.zip
otp_subdir.mk: Remove support for clearmake
Diffstat (limited to 'make/otp_subdir.mk')
-rw-r--r--make/otp_subdir.mk7
1 files changed, 1 insertions, 6 deletions
diff --git a/make/otp_subdir.mk b/make/otp_subdir.mk
index bfbd9997a1..919eee52fc 100644
--- a/make/otp_subdir.mk
+++ b/make/otp_subdir.mk
@@ -30,7 +30,6 @@ opt debug release docs release_docs tests release_tests clean depend valgrind:
if test -f vsn.mk; then \
echo "=== Entering application" `basename $$app_pwd` ; \
fi ; \
- case "$(MAKE)" in *clearmake*) tflag="-T";; *) tflag="";; esac; \
for d in $(SUB_DIRECTORIES); do \
if test -f $$d/SKIP ; then \
echo "=== Skipping subdir $$d, reason:" ; \
@@ -40,11 +39,7 @@ opt debug release docs release_docs tests release_tests clean depend valgrind:
if test ! -d $$d ; then \
echo "=== Skipping subdir $$d, it is missing" ; \
else \
- xflag="" ; \
- if test -f $$d/ignore_config_record.inf; then \
- xflag=$$tflag ; \
- fi ; \
- (cd $$d && $(MAKE) $$xflag $@) || exit $$? ; \
+ (cd $$d && $(MAKE) $@) || exit $$? ; \
fi ; \
fi ; \
done ; \