X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/3f976aabc08dd7d4762b0e04f0cbe8550f0e3ced..8f5219b6dab5a1c9b7f92362a34aacfd393fa0e4:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index 9e1d0d5..9fea3d9 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,13 @@ # See LICENSE file for copyright and license details. +# slstatus - suckless status monitor +.POSIX: include config.mk all: slstatus slstatus: slstatus.c config.h config.mk - ${CC} ${CFLAGS} -o $@ slstatus.c ${LDFLAGS} + $(CC) -o $@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) slstatus.c $(LDLIBS) config.h: cp config.def.h $@ @@ -13,16 +15,22 @@ config.h: clean: rm -f slstatus +dist: + rm -rf "slstatus-$(VERSION)" + mkdir -p "slstatus-$(VERSION)" + cp -R arg.h config.def.h config.mk LICENSE Makefile README slstatus.1 \ + slstatus.c slstatus.png "slstatus-$(VERSION)" + tar -cf - "slstatus-$(VERSION)" | gzip -c > "slstatus-$(VERSION).tar.gz" + rm -rf "slstatus-$(VERSION)" + install: all - mkdir -p ${DESTDIR}${PREFIX}/bin - cp -f slstatus ${DESTDIR}${PREFIX}/bin - chmod 755 ${DESTDIR}${PREFIX}/bin/slstatus - mkdir -p ${DESTDIR}${MANPREFIX}/man1 - cp -f slstatus.1 ${DESTDIR}${MANPREFIX}/man1 - chmod 644 ${DESTDIR}${MANPREFIX}/man1/slstatus.1 + mkdir -p "$(DESTDIR)$(PREFIX)/bin" + cp -f slstatus "$(DESTDIR)$(PREFIX)/bin" + chmod 755 "$(DESTDIR)$(PREFIX)/bin/slstatus" + mkdir -p "$(DESTDIR)$(MANPREFIX)/man1" + cp -f slstatus.1 "$(DESTDIR)$(MANPREFIX)/man1" + chmod 644 "$(DESTDIR)$(MANPREFIX)/man1/slstatus.1" uninstall: - rm -f ${DESTDIR}${PREFIX}/bin/slstatus - rm -f ${DESTDIR}${MANPREFIX}/man1/slstatus.1 - -.PHONY: all clean install uninstall + rm -f "$(DESTDIR)$(PREFIX)/bin/slstatus" + rm -f "$(DESTDIR)$(MANPREFIX)/man1/slstatus.1"