diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2014-04-02 18:01:39 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2014-04-02 18:01:39 +0200 |
commit | b3f1118843f365fea5946033758278be9260cfb3 (patch) | |
tree | 2b524e18709dfee93e6d26a3505db93d8f10d02c /Makefile | |
parent | 4b4ca37b90478ea68d89d4ed7d4e2ecb6484107f (diff) |
sfeed_opml_import: fix build
Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,9 +26,9 @@ sfeed: sfeed.o xml.o util.o @echo CC -o $@ @${CC} -o $@ sfeed.o xml.o util.o ${LDFLAGS} -sfeed_opml_import: sfeed_opml_import.o xml.o +sfeed_opml_import: sfeed_opml_import.o xml.o util.o @echo CC -o $@ - @${CC} -o $@ sfeed_opml_import.o xml.o ${LDFLAGS} + @${CC} -o $@ sfeed_opml_import.o xml.o util.o ${LDFLAGS} sfeed_plain: sfeed_plain.o util.o @echo CC -o $@ |