searchhut/Makefile

22 lines
386 B
Makefile
Raw Normal View History

2022-07-09 18:14:00 +02:00
.POSIX:
.SUFFIXES:
all: sh-api sh-index sh-search sh-web
generate:
go generate ./...
sh-api: generate
go build -o sh-api cmd/sh-api/main.go
sh-index: generate
go build -o sh-index cmd/sh-index/main.go
sh-search: generate
go build -o sh-search cmd/sh-search/main.go
sh-web: generate
go build -o sh-web cmd/sh-web/main.go
.PHONY: all sh-api sh-index sh-search sh-web generate