From cb8da9ddaecf43a2efcc6f3667e6a95ad0ed6e17 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Tue, 16 Nov 2021 22:25:39 +0500 Subject: [PATCH] Remove make task "dist" --- .gitignore | 1 - Makefile | 10 +--------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 1ec87ef..d0c9f19 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ *.o /polytreewm -/polytreewm-*.tar.gz diff --git a/Makefile b/Makefile index 931796f..e08c808 100644 --- a/Makefile +++ b/Makefile @@ -29,14 +29,6 @@ polytreewm: ${OBJ} clean: rm -f polytreewm ${OBJ} polytreewm-${VERSION}.tar.gz -dist: clean - mkdir -p polytreewm-${VERSION} - cp -R LICENSE Makefile README.md config.def.h config.mk \ - polytreewm.1 drw.h util.h ${SRC} polytreewm.png polytreewm-${VERSION} - tar -cf polytreewm-${VERSION}.tar polytreewm-${VERSION} - gzip polytreewm-${VERSION}.tar - rm -rf polytreewm-${VERSION} - install: all mkdir -p ${DESTDIR}${PREFIX}/bin cp -f polytreewm ${DESTDIR}${PREFIX}/bin @@ -62,4 +54,4 @@ uninstall: ${DESTDIR}${ICONSPREFIX}/polytreewm.png \ ${DESTDIR}${XSESSIONSPREFIX}/polytreewm.desktop -.PHONY: all options clean dist install uninstall xinstall +.PHONY: all options clean install uninstall xinstall