From: drkhsh Date: Mon, 15 May 2023 17:11:39 +0000 (+0200) Subject: Fix release tarball to prepare for release X-Git-Url: http://git.skullheadx.com/tech/openbsd_html_css/blog/static/gitweb.css?a=commitdiff_plain;h=483169021ba996f59a97b4e3b74cee7e43d6ab6f;p=slstatus.git Fix release tarball to prepare for release Correctly copies components to sub-directory, adds all required files --- diff --git a/Makefile b/Makefile index 7834257..7a18274 100644 --- a/Makefile +++ b/Makefile @@ -44,14 +44,15 @@ slstatus: slstatus.o $(COM:=.o) $(REQ:=.o) $(CC) -o $@ $(LDFLAGS) $(COM:=.o) $(REQ:=.o) slstatus.o $(LDLIBS) clean: - rm -f slstatus slstatus.o $(COM:=.o) $(REQ:=.o) + rm -f slstatus slstatus.o $(COM:=.o) $(REQ:=.o) slstatus-${VERSION}.tar.gz dist: rm -rf "slstatus-$(VERSION)" mkdir -p "slstatus-$(VERSION)/components" cp -R LICENSE Makefile README config.mk config.def.h \ - arg.h slstatus.c $(COM:=.c) $(REQ:=.c) $(REQ:=.h) \ + arg.h slstatus.h slstatus.c $(REQ:=.c) $(REQ:=.h) \ slstatus.1 "slstatus-$(VERSION)" + cp -R $(COM:=.c) "slstatus-$(VERSION)/components" tar -cf - "slstatus-$(VERSION)" | gzip -c > "slstatus-$(VERSION).tar.gz" rm -rf "slstatus-$(VERSION)"