Skip to content

Commit 7eef071

Browse files
committed
Fix: Makefile
1 parent 0db8c65 commit 7eef071

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ SHELL = /bin/bash
22

33
BIN_DIR = /usr/local/bin
44
TOOL_NAME = swift-doc-coverage
5-
LIB_NAME = lib_InternalSwiftSyntaxParser.dylib
65
BUILD_DIR = .build
76
SOURCES = $(wildcard Sources/**/*.swift)
87

@@ -14,12 +13,10 @@ $(BUILD_DIR)/release/$(TOOL_NAME): $(SOURCES)
1413
.PHONY: install
1514
install: $(BUILD_DIR)/release/$(TOOL_NAME)
1615
@install "$(BUILD_DIR)/release/$(TOOL_NAME)" $(BIN_DIR)
17-
@install "$(BUILD_DIR)/release/$(LIB_NAME)" $(BIN_DIR)
1816

1917
.PHONY: uninstall
2018
uninstall:
2119
@rm -rf "$(BIN_DIR)/$(TOOL_NAME)"
22-
@rm -rf "$(BIN_DIR)/$(LIB_NAME)"
2320

2421
.PHONY: clean
2522
clean:

0 commit comments

Comments
 (0)