diff --git a/share/Makefile b/share/Makefile index d6854b230ae5..c4e12b05f7db 100644 --- a/share/Makefile +++ b/share/Makefile @@ -1,97 +1,96 @@ # @(#)Makefile 8.1 (Berkeley) 6/5/93 # $FreeBSD$ .include # Do not include `info' in the SUBDIR list, it is handled separately. SUBDIR= ${_colldef} \ ${_ctypedef} \ ${_dict} \ ${_doc} \ ${_dtrace} \ ${_examples} \ ${_i18n} \ keys \ ${_man} \ ${_me} \ misc \ ${_mk} \ ${_monetdef} \ ${_msgdef} \ ${_numericdef} \ ${_sendmail} \ skel \ ${_snmp} \ ${_syscons} \ tabset \ termcap \ - terminfo \ ${_timedef} \ ${_vt} \ ${_zoneinfo} # NB: keep these sorted by MK_* knobs .if ${MK_BSNMP} != "no" _snmp= snmp .endif .if ${MK_CDDL} != "no" _dtrace= dtrace .endif .if ${MK_DICT} != "no" _dict= dict .endif .if ${MK_EXAMPLES} != "no" _examples= examples .endif .if ${MK_ICONV} != "no" _i18n= i18n .endif .if ${MK_LOCALES} != "no" _colldef= colldef _ctypedef= ctypedef _monetdef= monetdef _msgdef= msgdef _numericdef= numericdef _timedef= timedef .endif .if ${MK_MAKE} != "no" _mk= mk .endif .if ${MK_MAN} != "no" _man= man .endif .if ${MK_SENDMAIL} != "no" _sendmail= sendmail .endif .if ${MK_SHAREDOCS} != "no" _doc= doc .endif .if ${MK_SYSCONS} != "no" _syscons= syscons .endif SUBDIR.${MK_TESTS}+= tests .if ${MK_VT} != "no" _vt= vt .endif .if ${MK_ZONEINFO} != "no" _zoneinfo= zoneinfo .endif SUBDIR_PARALLEL= .include diff --git a/share/terminfo/Makefile b/share/terminfo/Makefile deleted file mode 100644 index 7bb11f3fdf24..000000000000 --- a/share/terminfo/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -PACKAGE= runtime - -.PATH: ${SRCTOP}/contrib/ncurses/misc -TINFOBUILDDIR= ${.OBJDIR}/builddir -CLEANDIRS+= builddir - -.include - -.if !defined(_SKIP_BUILD) -all: terminfo -.endif -META_TARGETS+= terminfo install-terminfo - -terminfo: terminfo.src - mkdir -p ${TINFOBUILDDIR} - ${TIC_CMD} -x -o ${TINFOBUILDDIR} ${.ALLSRC} - -.if make(*install*) -TINFOS!= cd ${TINFOBUILDDIR} && find * -type f | LC_ALL=C sort -TINFOSDIRS= ${TINFOS:C/(.).*/\1/g:O:u} -.endif - -beforeinstall: install-terminfo -install-terminfo: - mkdir -p ${DESTDIR}/usr/share/terminfo - cd ${DESTDIR}/usr/share/terminfo; mkdir -p ${TINFOSDIRS} -.for f in ${TINFOS} - ${INSTALL} ${TAG_ARGS} \ - -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ - ${TINFOBUILDDIR}/${f} ${DESTDIR}/usr/share/terminfo/${f} -.endfor - -.include -