summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/module.rules5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/module.rules b/test/module.rules
index c51068901..5f41d4d2f 100644
--- a/test/module.rules
+++ b/test/module.rules
@@ -24,12 +24,17 @@ clean: test.clean
## skip install/uninstall on darwin
ifneq ($(BUILD.system),darwin)
+test.install-strip: | $(dir $(TEST.install.exe))
+ $(CP.exe) $(TEST.exe) $(TEST.install.exe)
+ $(STRIP.exe) $(TEST.install.exe)
+
test.install: | $(dir $(TEST.install.exe))
$(CP.exe) $(TEST.exe) $(TEST.install.exe)
test.uninstall:
$(RM.exe) -f $(TEST.install.exe)
+install-strip: test.install-strip
install: test.install
uninstall: test.uninstall