diff options
author | Laslo Hunhold <dev@frign.de> | 2017-08-10 21:32:10 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2017-08-10 22:32:14 +0200 |
commit | 8dad4910bfc75aa1085a20de95ceee951588deae (patch) | |
tree | 492ea5380eecd63ed49ec7028f0b2f80ec10f9a5 /Makefile | |
parent | d35e518e394b706cb791e30d4fcf7bd0498217ee (diff) |
Refactor build system
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -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 $@ @@ -14,15 +16,13 @@ clean: rm -f slstatus 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" |