summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 12d8a75e3..1c7a07ea5 100644
--- a/Makefile
+++ b/Makefile
@@ -821,9 +821,8 @@ alldepend::
# Check that the stack limit is reasonable.
checkstack:
- @if $(BYTECC) $(BYTECCCOMPOPTS) $(BYTECCLINKOPTS) \
- -o tools/checkstack tools/checkstack.c; \
- then tools/checkstack; \
+ @if $(MKEXE) -o tools/checkstack$(EXE) tools/checkstack.c; \
+ then tools/checkstack$(EXE); \
else :; \
fi
@rm -f tools/checkstack