summaryrefslogtreecommitdiffstats
path: root/server/Makefile
blob: a466c70d3b4ce2d53bf2e64271b0a377c942271d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12

SRCS = src/*.py

BIN = build/shared_vim_server

.PHONY: build

build: $(BIN)

$(BIN): $(SRCS) setup.py
    python3 setup.py build