We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0db8c65 commit 7eef071Copy full SHA for 7eef071
Makefile
@@ -2,7 +2,6 @@ SHELL = /bin/bash
2
3
BIN_DIR = /usr/local/bin
4
TOOL_NAME = swift-doc-coverage
5
-LIB_NAME = lib_InternalSwiftSyntaxParser.dylib
6
BUILD_DIR = .build
7
SOURCES = $(wildcard Sources/**/*.swift)
8
@@ -14,12 +13,10 @@ $(BUILD_DIR)/release/$(TOOL_NAME): $(SOURCES)
14
13
.PHONY: install
15
install: $(BUILD_DIR)/release/$(TOOL_NAME)
16
@install "$(BUILD_DIR)/release/$(TOOL_NAME)" $(BIN_DIR)
17
- @install "$(BUILD_DIR)/release/$(LIB_NAME)" $(BIN_DIR)
18
19
.PHONY: uninstall
20
uninstall:
21
@rm -rf "$(BIN_DIR)/$(TOOL_NAME)"
22
- @rm -rf "$(BIN_DIR)/$(LIB_NAME)"
23
24
.PHONY: clean
25
clean:
0 commit comments