Files
ginie/Makefile

25 lines
371 B
Makefile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
BINARY=ginie
VERSION=0.1.3
build:
go build -o $(BINARY) ./cmd/ginie
run:
go run ./cmd/ginie
clean:
rm -f $(BINARY)
rm -rf build
rm -f *.deb
deb: build
rm -rf build
mkdir -p build/usr/local/bin
cp $(BINARY) build/usr/local/bin/
fpm -s dir -t deb \
-n ginie \
-v $(VERSION) \
--description "Ginie Git Native Installer Engine" \
-C build \
.