booster/Makefile

17 lines
468 B
Makefile
Raw Normal View History

2023-08-30 19:51:55 +02:00
all:
true
install:
mkdir -p $(DESTDIR)/usr/bin/
cd generator
go build -ldflags="-s -w" -o ./generator -buildvcs=false
cd ..
cd init
go build -ldflags="-s -w" -o ./init -buildvcs=false
cd ..
mkdir "$DESTDIR/etc/"
touch "$DESTDIR/etc/booster.yaml"
install -Dp -m755 generator/generator "$DESTDIR/usr/bin/booster"
install -Dp -m644 docs/manpage.1 "$DESTDIR/usr/share/man/man1/booster.1"
install -Dp -m755 init/init "$DESTDIR/usr/lib/booster/init"