diff options
Diffstat (limited to 'test/module.rules')
-rw-r--r-- | test/module.rules | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/module.rules b/test/module.rules index 34004b97f..2a18db9b4 100644 --- a/test/module.rules +++ b/test/module.rules @@ -18,3 +18,15 @@ test.clean: build: test.build clean: test.clean + +############################################################################### + +## avoid installing CLI on darwin +ifneq ($(BUILD.system),darwin) + +install: test.install + +test.install: | $(dir $(TEST.install.exe)) + $(CP.exe) $(TEST.exe) $(TEST.install.exe) + +endif |