diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-06-09 20:47:12 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-06-09 20:47:12 +0000 |
commit | 3b39a62aa030ee9046f6e6f139be1cf28bfe7d8c (patch) | |
tree | 12406a7282cb56f5af16659144d0d657fe83da5f /lib/libc/Makefile | |
parent | a217d2c7d801858bd559939962d02c1462d48bbc (diff) |
Nuke the machinery to sync libkern with libc, it's not been used in the
last 15 years and there is no point to use it in the future.
From Jean-Philippe Ouellet
Diffstat (limited to 'lib/libc/Makefile')
-rw-r--r-- | lib/libc/Makefile | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index 87480371ea8..3417cd658d3 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.33 2014/05/21 01:17:52 tedu Exp $ +# $OpenBSD: Makefile,v 1.34 2014/06/09 20:47:10 miod Exp $ # # The NLS (message catalog) functions are always in libc. To choose that # strerror(), perror(), strsignal(), psignal(), etc. actually call the NLS @@ -24,30 +24,6 @@ NLS= C.msg Pig.msg da.ISO8859-1.msg da.UTF-8.msg de.ISO8859-1.msg \ nl.ISO8859-1.msg nl.UTF-8.msg no.ISO8859-1.msg no.UTF-8.msg \ ru.KOI8-R.msg ru.UTF-8.msg sv.ISO8859-1.msg sv.UTF-8.msg -copy-to-libkern: copy-to-libkern-machind copy-to-libkern-machdep - -.if make(copy-to-libkern) -copy-to-libkern-machind: ${KSRCS} - cp -p ${.ALLSRC} ${LIBKERN} -.if defined(KINCLUDES) && !empty(KINCLUDES) - (cd ${.CURDIR} ; cp -p ${KINCLUDES} ${LIBKERN}) -.endif - -copy-to-libkern-machdep: ${KMSRCS} -.if defined(KMSRCS) && !empty(KMSRCS) - cp -p ${.ALLSRC} ${LIBKERN}/arch/${MACHINE_CPU} -.endif -.if defined(KMINCLUDES) && !empty(KMINCLUDES) - (cd ${.CURDIR} ; cp -p ${KMINCLUDES} ${LIBKERN}/arch/${MACHINE_CPU}) -.endif - -rm-from-libkern: - for i in ${KSRCS}; do rm -f ${LIBKERN}/$$i; done -.if defined(KMSRCS) && !empty(KMSRCS) - for i in ${KMSRCS}; do rm -f ${LIBKERN}/arch/${MACHINE_CPU}/$$i; done -.endif -.endif - all: tags tags: ${SRCS} ctags -w ${.ALLSRC:M*.c} |