A semi-automatic parser of Ancient Greek and Latin languages.
https://lexis.glossa.info/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
299 B
19 lines
299 B
6 years ago
|
APP?=lexis
|
||
|
ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
||
|
|
||
|
.PHONY: run
|
||
|
run:
|
||
|
GOPATH=${ROOT_DIR}/vendor go run ${APP}.go $(filter-out $@, $(MAKECMDGOALS))
|
||
|
|
||
|
.PHONY: build
|
||
|
build:
|
||
|
GOPATH=${ROOT_DIR}/vendor go build ${APP}.go
|
||
|
|
||
|
.PHONY: serve
|
||
|
serve: build
|
||
|
${APP} --serve
|
||
|
|
||
|
%:
|
||
|
@true
|
||
|
|