Xinqi Bao's Git

Fixed man page path
[slstatus.git] / Makefile
index 0a41a93..dbe636e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,30 +1,28 @@
 # See LICENSE file for copyright and license details.
+# slstatus - suckless status monitor
+.POSIX:
 
 include config.mk
 
-NAME=slstatus
+all: slstatus
 
-all: ${NAME}
-
-${NAME}: config.h config.mk
-       ${CC} ${CFLAGS} -o $@ ${NAME}.c ${LDFLAGS}
+slstatus: slstatus.c config.h config.mk
+       $(CC) -o $@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) slstatus.c $(LDLIBS)
 
 config.h:
        cp config.def.h $@
 
 clean:
-       rm -f ${NAME}
+       rm -f slstatus
 
 install: all
-       mkdir -p ${DESTDIR}${PREFIX}/bin
-       cp -f ${NAME} ${DESTDIR}${PREFIX}/bin
-       chmod 755 ${DESTDIR}${PREFIX}/bin/${NAME}
-       mkdir -p ${DESTDIR}${MANPREFIX}/man1
-       cp -f ${NAME}.1 ${DESTDIR}${MANPREFIX}/man1
-       chmod 644 ${DESTDIR}${MANPREFIX}/man1/${NAME}.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/${NAME}
-       rm -f ${DESTDIR}${MANPREFIX}/man1/${NAME}.1
-
-.PHONY: all clean install uninstall
+       rm -f "$(DESTDIR)$(PREFIX)/bin/slstatus"
+       rm -f "$(DESTDIR)$(MANPREFIX)/man1/slstatus.1"