diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-26 16:29:45 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-26 16:29:45 +0400 |
commit | d1c7a37b2879e64a8418b935399178881c826e70 (patch) | |
tree | 02b98b0bb9da4ab6fe92ad686bf06cc103db0016 | |
parent | 1827d30776d2155e113d8f37dae33f69f91ed400 (diff) |
fix(makefile): include all the necessary files when creating tarball
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |