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 $@