Skip to content

Commit b8ced91

Browse files
committed
Add make rules
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
1 parent 2e68dd8 commit b8ced91

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,14 @@ endif
1919
@cp build/libs/language-server-all.jar ~/.nextflow/lsp/$(STABLE)/v$(VERSION).jar
2020
@echo "installed at: ~/.nextflow/lsp/$(STABLE)/v$(VERSION).jar"
2121

22+
.PHONY: native
23+
native:
24+
./native/build.sh
25+
26+
install-native:
27+
@mkdir -p ~/.local/bin
28+
@cp build/native/nativeCompile/nextflow-lsp ~/.local/bin
29+
@echo "installed at: ~/.local/bin/nextflow-lsp"
30+
2231
clean:
2332
./gradlew clean

0 commit comments

Comments
 (0)