diff options
author | obrien <obrien@FreeBSD.org> | 2000-10-15 07:10:42 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-10-15 07:10:42 +0000 |
commit | 5eab735c6e923f38a26f592cb49e6f518b74c1ed (patch) | |
tree | 31d203b2be08a23a364e118a2b4af988682793ed | |
parent | 677f44272ccb586a28159573a705615a731443a9 (diff) | |
download | FreeBSD-src-5eab735c6e923f38a26f592cb49e6f518b74c1ed.zip FreeBSD-src-5eab735c6e923f38a26f592cb49e6f518b74c1ed.tar.gz |
Remove GLOBAL -- it has moved to Ports.
Approved by: unanimous response on arch@freebsd.org (June time frame)
-rw-r--r-- | usr.bin/global/Makefile | 5 | ||||
-rw-r--r-- | usr.bin/global/Makefile.inc | 18 | ||||
-rw-r--r-- | usr.bin/global/btreeop/Makefile | 8 | ||||
-rw-r--r-- | usr.bin/global/gctags/Makefile | 13 | ||||
-rw-r--r-- | usr.bin/global/global/Makefile | 8 | ||||
-rw-r--r-- | usr.bin/global/gtags/Makefile | 8 | ||||
-rw-r--r-- | usr.bin/global/htags/Makefile | 12 | ||||
-rw-r--r-- | usr.bin/global/lib/Makefile | 14 | ||||
-rw-r--r-- | usr.bin/global/systags/Makefile | 12 |
9 files changed, 0 insertions, 98 deletions
diff --git a/usr.bin/global/Makefile b/usr.bin/global/Makefile deleted file mode 100644 index a37a2f9..0000000 --- a/usr.bin/global/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -# $FreeBSD$ - -SUBDIR= lib global gtags gctags btreeop htags systags - -.include <bsd.subdir.mk> diff --git a/usr.bin/global/Makefile.inc b/usr.bin/global/Makefile.inc deleted file mode 100644 index 0e33fa0..0000000 --- a/usr.bin/global/Makefile.inc +++ /dev/null @@ -1,18 +0,0 @@ -# $FreeBSD$ - -.if !defined(GLOBAL_MAKEFILE_INC_BEEN_HERE) - -GLOBAL_MAKEFILE_INC_BEEN_HERE=yes -.if exists(${.OBJDIR}/../lib) -LIBDESTDIR= ${.OBJDIR}/../lib -.else -LIBDESTDIR= ${.CURDIR}/../lib -.endif -DPADD= ${LIBDESTDIR}/libgloutil.a -LDADD= ${LIBDESTDIR}/libgloutil.a -CFLAGS+= -I${GLOBAL_DIR}/lib -O \ - -Wall -Wwrite-strings -Wmissing-prototypes - -.include "../Makefile.inc" - -.endif diff --git a/usr.bin/global/btreeop/Makefile b/usr.bin/global/btreeop/Makefile deleted file mode 100644 index da762b8..0000000 --- a/usr.bin/global/btreeop/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -# $FreeBSD$ - -GLOBAL_DIR= ${.CURDIR}/../../../contrib/global -.PATH: ${GLOBAL_DIR}/btreeop - -PROG= btreeop - -.include <bsd.prog.mk> diff --git a/usr.bin/global/gctags/Makefile b/usr.bin/global/gctags/Makefile deleted file mode 100644 index 48ae792..0000000 --- a/usr.bin/global/gctags/Makefile +++ /dev/null @@ -1,13 +0,0 @@ - -# $FreeBSD$ - -GLOBAL_DIR= ${.CURDIR}/../../../contrib/global -.PATH: ${GLOBAL_DIR}/gctags - -CFLAGS+= -I${GLOBAL_DIR}/gctags - -PROG= gctags -SRCS= C.c assembler.c gctags.c java.c - -.include <bsd.prog.mk> - diff --git a/usr.bin/global/global/Makefile b/usr.bin/global/global/Makefile deleted file mode 100644 index 61c4d09..0000000 --- a/usr.bin/global/global/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -# $FreeBSD$ - -GLOBAL_DIR= ${.CURDIR}/../../../contrib/global -.PATH: ${GLOBAL_DIR}/global - -PROG= global - -.include <bsd.prog.mk> diff --git a/usr.bin/global/gtags/Makefile b/usr.bin/global/gtags/Makefile deleted file mode 100644 index ab3fc76..0000000 --- a/usr.bin/global/gtags/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -# $FreeBSD$ - -GLOBAL_DIR= ${.CURDIR}/../../../contrib/global -.PATH: ${GLOBAL_DIR}/gtags - -PROG= gtags - -.include <bsd.prog.mk> diff --git a/usr.bin/global/htags/Makefile b/usr.bin/global/htags/Makefile deleted file mode 100644 index 197d5bb..0000000 --- a/usr.bin/global/htags/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# $FreeBSD$ - -GLOBAL_DIR= ${.CURDIR}/../../../contrib/global -.PATH: ${GLOBAL_DIR}/htags - -MAN1= htags.1 - -beforeinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${GLOBAL_DIR}/htags/htags.pl ${DESTDIR}${BINDIR}/htags - -.include <bsd.prog.mk> diff --git a/usr.bin/global/lib/Makefile b/usr.bin/global/lib/Makefile deleted file mode 100644 index ad6b48d..0000000 --- a/usr.bin/global/lib/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -# $FreeBSD$ - -GLOBAL_DIR= ${.CURDIR}/../../../contrib/global -.PATH: ${GLOBAL_DIR}/lib - -LIB= gloutil -SRCS= gtagsop.c tab.c strbuf.c mgets.c defined.c getdbpath.c \ - find.c dbop.c test.c makepath.c locatestring.c pathop.c \ - conf.c strmake.c usable.c token.c -NOPROFILE= noprofile -INTERNALLIB= true -INTERNALSTATICLIB= true - -.include <bsd.lib.mk> diff --git a/usr.bin/global/systags/Makefile b/usr.bin/global/systags/Makefile deleted file mode 100644 index ed125c4..0000000 --- a/usr.bin/global/systags/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# $FreeBSD$ - -GLOBAL_DIR= ${.CURDIR}/../../../contrib/global -.PATH: ${GLOBAL_DIR}/systags - -NOOBJ= - -beforeinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${GLOBAL_DIR}/systags/systags.sh ${DESTDIR}${BINDIR}/systags - -.include <bsd.prog.mk> |