this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a82c2b5dce022f5a8ada06c743a902675f5337d0 11 lines 296 B view raw
1all: bin/mostliked bin/feedweb 2 3bin/mostliked: cmd/mostliked/main.go pkg/mostliked/handler.go db/mostliked/*.go pkg/feeds/*.go 4 go build -o $@ ./cmd/mostliked 5 6bin/feedweb: cmd/feedweb/*.go pkg/*/generator.go db/*/*.go pkg/feeds/*.go 7 go build -o $@ ./cmd/feedweb 8 9.PHONY: clean 10clean: 11 rm bin/*