diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2014-04-01 00:20:48 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2014-04-01 00:20:48 +0200 |
commit | bc659088cf6d711db8bd1c40deb9d403f855cf14 (patch) | |
tree | beaf016a6ac66934bf140b07b18583d808d882cb | |
parent | 0df57225a5c7e475116cad33c9a9a92b907ade56 (diff) |
Makefile: update clean rule
Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ include config.mk NAME = sfeed SRC = sfeed.c sfeed_plain.c sfeed_html.c sfeed_opml_import.c sfeed_frames.c \ - sfeed_xmlenc.c sfeed_web.c xml.c + sfeed_xmlenc.c sfeed_web.c xml.c util.c OBJ = ${SRC:.c=.o} all: options sfeed sfeed_plain sfeed_html sfeed_opml_import sfeed_frames \ @@ -53,7 +53,7 @@ sfeed_web: sfeed_web.o xml.o util.o clean: @echo cleaning @rm -f sfeed sfeed_plain sfeed_html sfeed_frames sfeed_opml_import \ - ${OBJ} ${NAME}-${VERSION}.tar.gz + sfeed_web sfeed_xmlenc ${OBJ} ${NAME}-${VERSION}.tar.gz dist: clean @echo creating dist tarball |