diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-05-29 19:22:33 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-05-29 19:22:33 +0400 |
commit | 311fc41ba4ea01e1aecf82d3d6ca5d153378acbe (patch) | |
tree | 7d62b8740e70d740832066440b1217f8a069e4b7 | |
parent | ae1d89736ccc9216973ef58b10465b02109b1dc0 (diff) |
when generating tarball: `st-farajli-(VERSION)` -> `st_farajli-(VERSION)`
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -24,14 +24,14 @@ st: $(OBJ) $(CC) -o $@ $(OBJ) $(STLDFLAGS) clean: - rm -f st $(OBJ) st-farajli-$(VERSION).tar.gz + rm -f st $(OBJ) st_farajli-$(VERSION).tar.gz dist: clean - mkdir -p st-farajli-$(VERSION) + mkdir -p st_farajli-$(VERSION) cp -R Makefile LICENSE config.mk\ - config.h 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) + config.h 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) install: st mkdir -p $(DESTDIR)$(PREFIX)/bin |