sfeed

simple feed reader - forked from git.codemadness.org/sfeed
git clone git://src.gearsix.net/sfeed
Log | Files | Refs | Atom | README | LICENSE

commit c989512ab9d3c9f1225a9d54d6284bd2a0b28620
parent 2ebf11638c0b03ee6ac3260b9c961417545b97e4
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Thu,  8 May 2014 11:51:54 +0000

mkfile: improve some more

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>

Diffstat:
Mmkfile | 19++++++++-----------
1 file changed, 8 insertions(+), 11 deletions(-)

diff --git a/mkfile b/mkfile @@ -1,18 +1,15 @@ +CC = cc + <config.mk -bins=sfeed sfeed_html sfeed_frames sfeed_plain sfeed_stats sfeed_web \ +TARG = sfeed sfeed_html sfeed_frames sfeed_plain sfeed_stats sfeed_web \ sfeed_xmlenc sfeed_opml_import -build:Q: $bins +all: $TARG -clean:Q: - rm -f *.o - rm -f core a.out - rm -f $bins - -install: build - echo "TODO" +clean: + rm -f *.o core a.out $TARG sfeed: xml.o sfeed_opml_import: xml.o @@ -20,7 +17,7 @@ sfeed_web: xml.o sfeed_xmlenc: xml.o &: &.o util.o - cc $prereq -o $target + $CC $prereq -o $target &.o: &.c - cc $CFLAGS -c $stem.c + $CC $CFLAGS -c $stem.c