diff options
author | des <des@FreeBSD.org> | 2000-05-25 16:24:31 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2000-05-25 16:24:31 +0000 |
commit | e5d7688f99046a4b3022e13701fd346f5328d6d4 (patch) | |
tree | ab95bd3a9549fc63c0570b6e47ddc36c1afcbb85 /lib/libfetch/Makefile | |
parent | 8e62250edde9eea0607bde13a83225e481f0e1ca (diff) | |
download | FreeBSD-src-e5d7688f99046a4b3022e13701fd346f5328d6d4.zip FreeBSD-src-e5d7688f99046a4b3022e13701fd346f5328d6d4.tar.gz |
Dump com_err, it's a stinking crock of shit.
Diffstat (limited to 'lib/libfetch/Makefile')
-rw-r--r-- | lib/libfetch/Makefile | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/lib/libfetch/Makefile b/lib/libfetch/Makefile index b78a844..b85f402 100644 --- a/lib/libfetch/Makefile +++ b/lib/libfetch/Makefile @@ -7,11 +7,11 @@ CFLAGS+= -DINET6 .if !defined(DEBUG) CFLAGS+= -DNDEBUG .endif -SRCS= fetch.c common.c ftp.c http.c file.c fetch_err.c \ - fetch_err.h ftperr.h httperr.h -INCS= fetch.h ${.OBJDIR}/fetch_err.h +SRCS= fetch.c common.c ftp.c http.c file.c \ + ftperr.h httperr.h +INCS= fetch.h MAN3= fetch.3 -CLEANFILES= fetch_err.c fetch_err.h ftperr.h httperr.h +CLEANFILES= ftperr.h httperr.h SHLIB_MAJOR= 2 SHLIB_MINOR= 0 @@ -38,10 +38,4 @@ httperr.h: http.errors @echo " { -1, FETCH_UNKNOWN, \"Unknown HTTP error\" }" >> ${.TARGET} @echo "};" >> ${.TARGET} -hdrs: fetch_err.h - -.ORDER: fetch_err.c fetch_err.h -fetch_err.c fetch_err.h: fetch_err.et - compile_et ${.ALLSRC} - .include <bsd.lib.mk> |