blob: 237e6310989d0c48646943bb6b556eb5b10f9b20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
SOURCES = $(wildcard *.go) $(wildcard */*.go)
BINARIES = nekoweb nekocrawl
DEPS = github.com/mmcdole/gofeed github.com/abbot/go-http-auth github.com/axgle/mahonia github.com/go-sql-driver/mysql github.com/microcosm-cc/bluemonday
default: $(BINARIES)
$(BINARIES): $(SOURCES)
go build
.PHONY: deps run
.PHONY: run
deps:
go get $(DEPS)
run:
./neko -update -serve
|