summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-02-27 16:37:34 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-02-27 16:37:34 +0100
commit6176613745fc01c259d5bcabd87fcff1a1b60bbf (patch)
treeb12d274051ebdc5fb47f29693acbe1b0477ad184 /Makefile
parentcd2eebc9b4efc64c0845d4ff325e29be42576d7f (diff)
add util for pledge
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index c5af23c..2061f86 100644
--- a/Makefile
+++ b/Makefile
@@ -86,8 +86,8 @@ sfeed_html: sfeed_html.o util.o
sfeed_mbox: sfeed_mbox.o util.o
${CC} -o $@ sfeed_mbox.o util.o ${LDFLAGS}
-sfeed_opml_import: sfeed_opml_import.o xml.o
- ${CC} -o $@ sfeed_opml_import.o xml.o ${LDFLAGS}
+sfeed_opml_import: sfeed_opml_import.o util.o xml.o
+ ${CC} -o $@ sfeed_opml_import.o util.o xml.o ${LDFLAGS}
sfeed_plain: sfeed_plain.o util.o
${CC} -o $@ sfeed_plain.o util.o ${LDFLAGS}
@@ -98,8 +98,8 @@ sfeed_tail: sfeed_tail.o util.o
sfeed_web: sfeed_web.o xml.o util.o
${CC} -o $@ sfeed_web.o xml.o util.o ${LDFLAGS}
-sfeed_xmlenc: sfeed_xmlenc.o xml.o
- ${CC} -o $@ sfeed_xmlenc.o xml.o ${LDFLAGS}
+sfeed_xmlenc: sfeed_xmlenc.o util.o xml.o
+ ${CC} -o $@ sfeed_xmlenc.o util.o xml.o ${LDFLAGS}
clean:
rm -f ${BIN} ${OBJ}