summaryrefslogtreecommitdiffstats
path: root/lib/libftpio/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libftpio/Makefile')
-rw-r--r--lib/libftpio/Makefile17
1 files changed, 16 insertions, 1 deletions
diff --git a/lib/libftpio/Makefile b/lib/libftpio/Makefile
index fc46bf6..d7254d3 100644
--- a/lib/libftpio/Makefile
+++ b/lib/libftpio/Makefile
@@ -1,10 +1,25 @@
LIB= ftpio
CFLAGS+= -I${.CURDIR} -Wall
-SRCS= ftpio.c
+SRCS= ftpio.c ftperr.c
MAN3= ftpio.3
+CLEANFILES+= ftperr.c
beforeinstall:
cd ${.CURDIR}; cmp -s ftpio.h ${DESTDIR}/usr/include/ftpio.h || \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ftpio.h ${DESTDIR}/usr/include
+ftperr.c: ftp.errors
+ @echo '#include <stdio.h>' > ${.TARGET}
+ @echo '#include "ftpio.h"' >> ${.TARGET}
+ @echo "struct ftperr ftpErrList[] = {" \ >> ${.TARGET}
+ @cat ${.ALLSRC} \
+ | grep -v ^# \
+ | sort \
+ | while read NUM STRING; do \
+ echo " { $${NUM}, \"$${STRING}\" },"; \
+ done >> ${.TARGET}
+ @echo "};" >> ${.TARGET}
+ @echo -n "int const ftpErrListLength = " >> ${.TARGET}
+ @echo "sizeof(ftpErrList) / sizeof(*ftpErrList);" >> ${.TARGET}
+
.include <bsd.lib.mk>
OpenPOWER on IntegriCloud