sport_rec_demo
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.
 

14 lines
243 B

GOSRCS := $(shell find . -name "*.go")
all: sport_rec_demo
clean:
@rm -f sport_rec_demo
run: sport_rec_demo
@echo "Starting ..."
@./sport_rec_demo serve -L :8080
sport_rec_demo: $(GOSRCS) Makefile
@echo "Building $@ ..."
@go build $@