slstatus

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.beauhilton.com/slstatus.git
Log | Files | Refs | README | LICENSE

commit aa17443013b1812186d2b51a284ed53cc63144aa
parent 96334e2079c0a4607aaa1ba78a7d633fa257ecc2
Author: Aaron Marcher <me@drkhsh.at>
Date:   Sun, 13 Aug 2017 23:05:22 +0200

Added Makefile target for distribution tarballs.

Diffstat:
MMakefile | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -15,6 +15,14 @@ config.h: clean: rm -f slstatus +dist: + rm -rf "slstatus-$(VERSION)" + mkdir -p "slstatus-$(VERSION)" + cp -R arg.h config.def.h config.mk LICENSE Makefile README slstatus.1 \ + slstatus.c slstatus.png "slstatus-$(VERSION)" + tar -cf - "slstatus-$(VERSION)" | gzip -c > "slstatus-$(VERSION).tar.gz" + rm -rf "slstatus-$(VERSION)" + install: all mkdir -p "$(DESTDIR)$(PREFIX)/bin" cp -f slstatus "$(DESTDIR)$(PREFIX)/bin"