diff options
| -rw-r--r-- | Makefile | 16 | ||||
| -rw-r--r-- | README.md | 10 |
2 files changed, 20 insertions, 6 deletions
@@ -1,15 +1,21 @@ -.PHONY: all -all: +FILES:= $(wildcard */*.go) $(wildcard *.go) + +.PHONY: all tidy clean test info + +all: build + +build: $(FILES) go build -.PHONY: tidy tidy: go mod tidy -.PHONY: clean clean: tidy rm ./bingo-factory -.PHONY: test test: go test ./... + +.PHONY: info +info: + @echo "FILES: $(FILES)" @@ -1,3 +1,11 @@ # Bingo Factory -A bingo maker +A multiplayer bingo maker + +## TODOs + +* [ ] web game client interface +* [ ] web sockets +* [ ] game sessions +* [ ] user authentication +* [ ] Tile set maker |
