tmkfile - scribo - Email-based phlog generator
 (HTM) git clone git://git.z3bra.org/scribo.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       tmkfile (466B)
       ---
            1 <config.mk
            2 
            3 all:V: scribo
            4 
            5 scribo: scribo.o rfc5322.o qp.o base64.o strlcpy.o strlcat.o
            6         $LD $LDFLAGS -o $target $prereq
            7 
            8 %.o: %.c
            9         $CC $CPPFLAGS $CFLAGS -c $stem.c
           10 
           11 install:V: scribo scribo.1
           12         mkdir -p ${DESTDIR}${PREFIX}/bin
           13         mkdir -p ${DESTDIR}${MANDIR}/man1
           14         cp scribo ${DESTDIR}${PREFIX}/bin/scribo
           15         cp scribo.1 ${DESTDIR}${MANDIR}/man1/scribo.1
           16 
           17 uninstall:V:
           18         rm ${DESTDIR}${PREFIX}/bin/scribo
           19         rm ${DESTDIR}${MANDIR}/man1/scribo.1
           20 
           21 clean:V:
           22         rm -f scribo *.o