URI:
       Makefile: rm headers - saait - the most boring static page generator
  HTML git clone git://git.codemadness.org/saait
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 893bbfdd9283e8f38700a2f5623c95a37c2c6f41
   DIR parent 63d47467edf428f92bdb01f1f0e7d60239782942
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sat, 15 Feb 2020 00:12:34 +0100
       
       Makefile: rm headers
       
       Diffstat:
         M Makefile                            |       7 ++-----
       
       1 file changed, 2 insertions(+), 5 deletions(-)
       ---
   DIR diff --git a/Makefile b/Makefile
       @@ -15,9 +15,6 @@ SAAIT_CPPFLAGS = -D_DEFAULT_SOURCE
        
        SRC = \
                saait.c
       -HDR = \
       -        arg.h\
       -        config.h
        BIN = \
                saait
        MAN1 = \
       @@ -40,7 +37,7 @@ all: ${BIN}
        dist:
                rm -rf ${NAME}-${VERSION}
                mkdir -p ${NAME}-${VERSION}
       -        cp -f ${MAN1} ${HDR} ${SRC} ${DOC} \
       +        cp -f ${MAN1} ${SRC} ${DOC} \
                        Makefile \
                        config.cfg print.css style.css \
                        ${NAME}-${VERSION}
       @@ -51,7 +48,7 @@ dist:
                        gzip -c > ${NAME}-${VERSION}.tar.gz
                rm -rf ${NAME}-${VERSION}
        
       -${OBJ}: ${HDR}
       +${OBJ}:
        
        saait: saait.o
                ${CC} -o $@ saait.o ${LDFLAGS}