Fix the "Unknown HTTP error" message.

Make compile_et generate prototypes.
This commit is contained in:
Dag-Erling Smørgrav 1998-12-15 12:24:26 +00:00
parent 88c4d11dc7
commit 2878b30827

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.7 1998/11/06 22:14:08 des Exp $
# $Id: Makefile,v 1.8 1998/11/07 08:59:38 des Exp $
LIB= fetch
CFLAGS+= -I. -Wall -pedantic
@ -41,11 +41,11 @@ httperr.inc: http.errors
| while read NUM CAT STRING; do \
echo " { $${NUM}, FETCH_$${CAT}, \"$${STRING}\" },"; \
done >> ${.TARGET}
@echo " { -1, FETCH_UNKNOWN, \"Unknown FTP error\" }" >> ${.TARGET}
@echo " { -1, FETCH_UNKNOWN, \"Unknown HTTP error\" }" >> ${.TARGET}
@echo "};" >> ${.TARGET}
fetch_err.c fetch_err.h: fetch_err.et
compile_et ${.ALLSRC}
compile_et -lang c ${.ALLSRC}
.include <bsd.lib.mk>