2 Commits
v1.0.0 ... main

Author SHA1 Message Date
e3e0b3c9ba build: modify binary name in Makefile 2025-10-03 00:01:02 +05:30
7e404a8e6d build: modify clean command in Makefile 2025-10-02 23:59:31 +05:30

View File

@@ -3,13 +3,13 @@ all:
go build -ldflags="-s -w" -trimpath -o ./dist/envy . go build -ldflags="-s -w" -trimpath -o ./dist/envy .
clean: clean:
rm ./dist/envy rm -rf ./dist
dev: dev:
go build -o ./dist/envy . go build -o ./dist/envy .
BINARY := myapp BINARY := envy
VERSION := $(shell git describe --tags --always --dirty) VERSION := $(shell git describe --tags --always --dirty)
OUTPUT := dist OUTPUT := dist