Files
kiosk/service/makefile
NABLA" d.o.o. Zenica 0efc012190 Initial commit
2025-09-23 15:44:01 +02:00

14 lines
208 B
Makefile

# Sane build defaults
CGO_ENABLED ?= 0
LDFLAGS ?= "-s -w"
run-%:
@go run \
cmd/$*/main.go
build-%:
@CGO_ENABLED=$(CGO_ENABLED) go build \
-ldflags $(LDFLAGS) -o bin/$* cmd/$*/main.go
.PHONY: %