diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..baef138 --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +SOURCES = $(wildcard *.go) $(wildcard */*.go) +BINARIES = nekoweb nekocrawl + +DEPS = github.com/SlyMarbo/rss 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 + go build cmd/nekoweb.go + go build cmd/nekocrawl.go + + +.PHONY: deps run + + +.PHONY: run +deps: + go get $(DEPS) +run: + ./nekoweb config.json |