summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2025-06-26 16:29:45 +0400
committerSuleyman Farajli <suleyman@farajli.net>2025-06-26 16:29:45 +0400
commitd1c7a37b2879e64a8418b935399178881c826e70 (patch)
tree02b98b0bb9da4ab6fe92ad686bf06cc103db0016
parent1827d30776d2155e113d8f37dae33f69f91ed400 (diff)
fix(makefile): include all the necessary files when creating tarball
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c4f78bf..7979592 100644
--- a/Makefile
+++ b/Makefile
@@ -28,8 +28,8 @@ clean:
dist: clean
mkdir -p st_farajli-$(VERSION)
- cp -R Makefile LICENSE config.mk\
- config.h arg.h st.h win.h $(SRC) st_farajli-$(VERSION)
+ cp -R TODO LICENSE Makefile README config.mk config.h\
+ st.info st.1 arg.h st.h win.h $(SRC) st_farajli-$(VERSION)
tar -czf st_farajli-$(VERSION).tar.gz st_farajli-$(VERSION)
rm -rf st_farajli-$(VERSION)