1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
BUILD=go build SOURCES=scorsh.go \ types.go \ config.go \ spooler.go \ commits.go \ workers.go all: scorsh scorsh: $(SOURCES) $(BUILD) scorsh.go types.go config.go spooler.go commits.go workers.go clean: rm scorsh