summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-01-31 15:27:53 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-01-31 15:27:53 +0100
commitfa635cfc925a95fe5c84569b043866dc3482ce90 (patch)
tree02e4a9a3024730b4387783b45ae66fdbe42477ac /Makefile
parent4b3f099a01635e99e1112c56906ae337c1bb0ba9 (diff)
always add strlcpy, strlcat, remove COMPAT #ifdef
The overhead for OpenBSD is minimal. I will periodically sync from OpenBSD libc.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 26e7835..2c8f6e2 100644
--- a/Makefile
+++ b/Makefile
@@ -12,8 +12,7 @@ SRC = \
sfeed_web.c\
sfeed_xmlenc.c\
util.c\
- xml.c
-COMPATSRC = \
+ xml.c\
strlcat.c\
strlcpy.c
BIN = \
@@ -48,11 +47,10 @@ DOC = \
README.xml\
TODO
HDR = \
- compat.h\
util.h\
xml.h
-OBJ = ${SRC:.c=.o} ${EXTRAOBJ}
+OBJ = ${SRC:.c=.o}
all: $(BIN)