summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2020-06-10 14:40:06 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2020-06-10 14:40:06 +0200
commit3d2cd7cf4a4052f3db6e13af4f22835b457bdeb3 (patch)
tree0144d1633e1e1759bd6f5be930ed2ef635ed1e45 /Makefile
parent9bc874d95e38bf3992c41fbb12f9877890f6bda5 (diff)
Makefile: pedantic change: use ar -rc instead of ar rc
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9ffabd7..1fd7ba7 100644
--- a/Makefile
+++ b/Makefile
@@ -80,7 +80,7 @@ ${OBJ}: ${HDR}
${CC} ${SFEED_CFLAGS} ${SFEED_CPPFLAGS} -o $@ -c $<
${LIBUTIL}: ${LIBUTILOBJ}
- ${AR} rc $@ $?
+ ${AR} -rc $@ $?
${RANLIB} $@
${LIBXML}: ${LIBXMLOBJ}