URI:
       tuse cflags, ldflags, fix directory name (sfeed copy-pasta) - webdump - [FORK] git://git.codemadness.org/webdump
  HTML git clone git://git.z3bra.org/webdump.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit b089e00f076e857bbd8f9f1c316ab55891916aad
   DIR parent 2fd29f177b3495b50c4a335d7ffb6352d58bd9eb
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sun, 22 Sep 2019 19:19:13 +0200
       
       use cflags, ldflags, fix directory name (sfeed copy-pasta)
       
       Diffstat:
         M Makefile                            |       4 ++--
         M config.mk                           |       2 +-
       
       2 files changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/Makefile b/Makefile
       t@@ -42,10 +42,10 @@ OBJ = ${SRC:.c=.o} ${LIBXMLOBJ} ${COMPATOBJ}
        ${OBJ}: config.mk ${HDR}
        
        .o:
       -        ${CC} ${SFEED_LDFLAGS} -o $@ $< ${LIB}
       +        ${CC} ${WEBDUMP_LDFLAGS} -o $@ $< ${LIB}
        
        .c.o:
       -        ${CC} ${SFEED_CFLAGS} ${SFEED_CPPFLAGS} -o $@ -c $<
       +        ${CC} ${WEBDUMP_CFLAGS} ${WEBDUMP_CPPFLAGS} -o $@ -c $<
        
        ${LIBXML}: ${LIBXMLOBJ}
                ${AR} rc $@ $?
   DIR diff --git a/config.mk b/config.mk
       t@@ -3,7 +3,7 @@
        # paths
        PREFIX = /usr/local
        MANPREFIX = ${PREFIX}/man
       -DOCPREFIX = ${PREFIX}/share/doc/sfeed
       +DOCPREFIX = ${PREFIX}/share/doc/webdump
        
        # compiler and linker
        CC = cc