Makefile: be verbose and remove options - slock - simple X display locker utility
 (HTM) git clone git://git.suckless.org/slock
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 5678764412873baa62e1536f0622d6a7cec62181
 (DIR) parent aecfb3f6803bc2e7a5478aeb4f3390cbaaa563c7
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Fri,  6 Oct 2023 11:39:40 +0200
       
       Makefile: be verbose and remove options
       
       Some things to improve at some point:
       
       * Respect system/packaging CFLAGS/LDFLAGS (don't hardcode -Os -Wall -pedantic,
         -s, etc).
       
       Diffstat:
         M Makefile                            |      55 +++++++++++--------------------
       
       1 file changed, 20 insertions(+), 35 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       @@ -6,56 +6,41 @@ include config.mk
        SRC = slock.c ${COMPATSRC}
        OBJ = ${SRC:.c=.o}
        
       -all: options slock
       -
       -options:
       -        @echo slock build options:
       -        @echo "CFLAGS   = ${CFLAGS}"
       -        @echo "LDFLAGS  = ${LDFLAGS}"
       -        @echo "CC       = ${CC}"
       +all: slock
        
        .c.o:
       -        @echo CC $<
       -        @${CC} -c ${CFLAGS} $<
       +        ${CC} -c ${CFLAGS} $<
        
        ${OBJ}: config.h config.mk arg.h util.h
        
        config.h:
       -        @echo creating $@ from config.def.h
       -        @cp config.def.h $@
       +        cp config.def.h $@
        
        slock: ${OBJ}
       -        @echo CC -o $@
       -        @${CC} -o $@ ${OBJ} ${LDFLAGS}
       +        ${CC} -o $@ ${OBJ} ${LDFLAGS}
        
        clean:
       -        @echo cleaning
       -        @rm -f slock ${OBJ} slock-${VERSION}.tar.gz
       +        rm -f slock ${OBJ} slock-${VERSION}.tar.gz
        
        dist: clean
       -        @echo creating dist tarball
       -        @mkdir -p slock-${VERSION}
       -        @cp -R LICENSE Makefile README slock.1 config.mk \
       +        mkdir -p slock-${VERSION}
       +        cp -R LICENSE Makefile README slock.1 config.mk \
                        ${SRC} config.def.h arg.h util.h slock-${VERSION}
       -        @tar -cf slock-${VERSION}.tar slock-${VERSION}
       -        @gzip slock-${VERSION}.tar
       -        @rm -rf slock-${VERSION}
       +        tar -cf slock-${VERSION}.tar slock-${VERSION}
       +        gzip slock-${VERSION}.tar
       +        rm -rf slock-${VERSION}
        
        install: all
       -        @echo installing executable file to ${DESTDIR}${PREFIX}/bin
       -        @mkdir -p ${DESTDIR}${PREFIX}/bin
       -        @cp -f slock ${DESTDIR}${PREFIX}/bin
       -        @chmod 755 ${DESTDIR}${PREFIX}/bin/slock
       -        @chmod u+s ${DESTDIR}${PREFIX}/bin/slock
       -        @echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
       -        @mkdir -p ${DESTDIR}${MANPREFIX}/man1
       -        @sed "s/VERSION/${VERSION}/g" <slock.1 >${DESTDIR}${MANPREFIX}/man1/slock.1
       -        @chmod 644 ${DESTDIR}${MANPREFIX}/man1/slock.1
       +        mkdir -p ${DESTDIR}${PREFIX}/bin
       +        cp -f slock ${DESTDIR}${PREFIX}/bin
       +        chmod 755 ${DESTDIR}${PREFIX}/bin/slock
       +        chmod u+s ${DESTDIR}${PREFIX}/bin/slock
       +        mkdir -p ${DESTDIR}${MANPREFIX}/man1
       +        sed "s/VERSION/${VERSION}/g" <slock.1 >${DESTDIR}${MANPREFIX}/man1/slock.1
       +        chmod 644 ${DESTDIR}${MANPREFIX}/man1/slock.1
        
        uninstall:
       -        @echo removing executable file from ${DESTDIR}${PREFIX}/bin
       -        @rm -f ${DESTDIR}${PREFIX}/bin/slock
       -        @echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
       -        @rm -f ${DESTDIR}${MANPREFIX}/man1/slock.1
       +        rm -f ${DESTDIR}${PREFIX}/bin/slock
       +        rm -f ${DESTDIR}${MANPREFIX}/man1/slock.1
        
       -.PHONY: all options clean dist install uninstall
       +.PHONY: all clean dist install uninstall