2020-01-20 18:34:48 +01:00
|
|
|
.PHONY: chromad upload all
|
|
|
|
|
2021-04-28 18:35:32 +02:00
|
|
|
VERSION ?= $(shell git describe --tags --dirty --always)
|
|
|
|
|
2020-01-20 18:34:48 +01:00
|
|
|
all: README.md tokentype_string.go
|
|
|
|
|
|
|
|
README.md: lexers/*/*.go
|
|
|
|
./table.py
|
|
|
|
|
|
|
|
tokentype_string.go: types.go
|
|
|
|
go generate
|
|
|
|
|
|
|
|
chromad:
|
|
|
|
rm -f chromad
|
2021-04-28 18:35:32 +02:00
|
|
|
(export CGOENABLED=0 GOOS=linux ; cd ./cmd/chromad && go build -ldflags="-X 'main.version=$(VERSION)'" -o ../../chromad .)
|
2020-01-20 18:34:48 +01:00
|
|
|
|
|
|
|
upload: chromad
|
|
|
|
scp chromad root@swapoff.org: && \
|
|
|
|
ssh root@swapoff.org 'install -m755 ./chromad /srv/http/swapoff.org/bin && service chromad restart'
|