Files
2026-04-26 16:10:20 -06:00

13 lines
394 B
Makefile

all: bin
bin: cmd/main.go proto/*.go
go build -o bin cmd/main.go
proto: proto/schema.pb.go proto/gtfs-realtime.pb.go
proto/gtfs-realtime.pb.go: proto/gtfs-realtime.proto
protoc --go_out=. --go_opt=paths=source_relative --go_opt=Mproto/gtfs-realtime.proto=github.com/cjdenio/uta-trax-api/proto $<
proto/schema.pb.go: proto/schema.proto
protoc --go_out=. --go_opt=paths=source_relative $<