Files
lambdaiot-core/Makefile
T
2025-12-28 13:24:16 +01:00

24 lines
275 B
Makefile

BINARY := bin/server
.PHONY: all build run docker-build test fmt clean
all: build
build:
go build -o $(BINARY) ./cmd/server
run: build
./$(BINARY)
docker-build:
docker build -t lambda-iot-core:latest .
test:
go test ./... -v
fmt:
go fmt ./...
clean:
rm -rf bin