livetrace/Makefile
Eliezer Croitoru bc603c289f V1
2026-08-07 12:27:43 +03:00

16 lines
330 B
Makefile

.PHONY: all build clean
APP_NAME = myapp
OUT_DIR = ./dist
all: build
# Builds both binaries inside Docker and exports them locally
build:
@mkdir -p $(OUT_DIR)
DOCKER_BUILDKIT=1 docker build --target bin --output type=local,dest=$(OUT_DIR) .
@echo "Build complete! Binaries located in $(OUT_DIR)"
clean:
rm -rf $(OUT_DIR)