summaryrefslogtreecommitdiffstats
path: root/contrib/global
diff options
context:
space:
mode:
authorcwt <cwt@FreeBSD.org>1997-12-15 23:27:04 +0000
committercwt <cwt@FreeBSD.org>1997-12-15 23:27:04 +0000
commitde0e4f242ee179e703acdff275253a534204376a (patch)
tree8795fc1db1b449f93fd241f1b9d75b36c4ae8d52 /contrib/global
parent7cb55de6f5fe34cf96591b368ea2596664c34a99 (diff)
downloadFreeBSD-src-de0e4f242ee179e703acdff275253a534204376a.zip
FreeBSD-src-de0e4f242ee179e703acdff275253a534204376a.tar.gz
Remove extra cruft. The previouos commit silently removed source ifles no longer required as of v2.2.1 as well.
Diffstat (limited to 'contrib/global')
-rw-r--r--contrib/global/Makefile.generic33
-rw-r--r--contrib/global/btreeop/Makefile.generic20
-rw-r--r--contrib/global/gctags/Makefile.generic20
-rw-r--r--contrib/global/global/Makefile.generic20
-rw-r--r--contrib/global/gtags/Makefile.generic20
-rw-r--r--contrib/global/htags/Makefile.generic11
-rw-r--r--contrib/global/lib/Makefile.generic14
-rw-r--r--contrib/global/systags/Makefile.generic8
8 files changed, 0 insertions, 146 deletions
diff --git a/contrib/global/Makefile.generic b/contrib/global/Makefile.generic
deleted file mode 100644
index 2f947bc..0000000
--- a/contrib/global/Makefile.generic
+++ /dev/null
@@ -1,33 +0,0 @@
-SUBDIR= lib global gtags gctags btreeop htags systags
-BINDIR= /usr/bin # EDIT THIS
-MANDIR= /usr/man # EDIT THIS
-
-all:
- @for d in $(SUBDIR); do \
- set -e; (cd $$d; echo '===>' $$d; make $(MFLAGS)) ;\
- done
-install:
- @for d in $(SUBDIR); do \
- set -e; (cd $$d; echo '===>' $$d; make $(MFLAGS) BINDIR=$(BINDIR) MANDIR=$(MANDIR) install) ;\
- done
-gen:
- @if [ ! -f Makefile.generic ]; then \
- echo "Error: generic makefile not found."; exit 1; \
- fi
- mv Makefile Makefile.bsd && mv Makefile.generic Makefile
- for d in $(SUBDIR); do \
- (cd $$d && mv Makefile Makefile.bsd && mv Makefile.generic Makefile) ;\
- done
-bsd:
- @if [ ! -f Makefile.bsd ]; then \
- echo "Error: BSD style makefile not found."; exit 1; \
- fi
- mv Makefile Makefile.generic; mv Makefile.bsd Makefile
- for d in $(SUBDIR); do \
- (cd $$d && mv Makefile Makefile.generic && mv Makefile.bsd Makefile) ;\
- done
-clean:
- @for d in $(SUBDIR); do \
- (cd $$d; echo '===>' $$d; make $(MFLAGS) clean) ;\
- done
-
diff --git a/contrib/global/btreeop/Makefile.generic b/contrib/global/btreeop/Makefile.generic
deleted file mode 100644
index b30213f..0000000
--- a/contrib/global/btreeop/Makefile.generic
+++ /dev/null
@@ -1,20 +0,0 @@
-PROG = btreeop
-CC = gcc
-LIBS = -L../lib -lutil -ldb
-CFLAGS = -O -I../lib -I/usr/include/db
-DEPLIBS= ../lib/libutil.a
-OBJS = btreeop.o
-BINDIR = /usr/bin
-MANDIR = /usr/man
-
-all: $(PROG)
-
-$(PROG): $(OBJS) $(DEPLIBS)
- $(CC) -o $(PROG) $(OBJS) $(LIBS)
-install:
- cp $(PROG) $(BINDIR)
- chmod 755 $(BINDIR)/$(PROG)
- cp $(PROG).1 $(MANDIR)/man1
- chmod 644 $(MANDIR)/man1/$(PROG).1
-clean:
- rm -f $(PROG) $(OBJS)
diff --git a/contrib/global/gctags/Makefile.generic b/contrib/global/gctags/Makefile.generic
deleted file mode 100644
index 6505c67..0000000
--- a/contrib/global/gctags/Makefile.generic
+++ /dev/null
@@ -1,20 +0,0 @@
-PROG = gctags
-DEFS = -DGLOBAL -DYACC
-CC = gcc
-CFLAGS = -O $(DEFS) -I../lib -I/usr/include/db
-LIBS = -L../lib -lutil -ldb
-OBJS = C.o assembler.o ctags.o fortran.o lisp.o print.o tree.o yacc.o
-BINDIR = /usr/bin
-MANDIR = /usr/man
-
-all: $(PROG)
-
-$(PROG): $(OBJS)
- $(CC) -o $(PROG) $(OBJS) $(LIBS)
-install:
- cp $(PROG) $(BINDIR)
- chmod 755 $(BINDIR)/$(PROG)
- cp $(PROG).1 $(MANDIR)/man1
- chmod 644 $(MANDIR)/man1/$(PROG).1
-clean:
- rm -f $(PROG) $(OBJS)
diff --git a/contrib/global/global/Makefile.generic b/contrib/global/global/Makefile.generic
deleted file mode 100644
index ca10a60..0000000
--- a/contrib/global/global/Makefile.generic
+++ /dev/null
@@ -1,20 +0,0 @@
-PROG = global
-CC = gcc
-LIBS = -L../lib -lutil -ldb
-CFLAGS = -O -I../lib -I/usr/include/db
-DEPLIBS= ../lib/libutil.a
-OBJS = global.o
-BINDIR = /usr/bin
-MANDIR = /usr/man
-
-all: $(PROG)
-
-$(PROG): $(OBJS) $(DEPLIBS)
- $(CC) -o $(PROG) $(OBJS) $(LIBS)
-install:
- cp $(PROG) $(BINDIR)
- chmod 755 $(BINDIR)/$(PROG)
- cp $(PROG).1 $(MANDIR)/man1
- chmod 644 $(MANDIR)/man1/$(PROG).1
-clean:
- rm -f $(PROG) $(OBJS)
diff --git a/contrib/global/gtags/Makefile.generic b/contrib/global/gtags/Makefile.generic
deleted file mode 100644
index 415d30f..0000000
--- a/contrib/global/gtags/Makefile.generic
+++ /dev/null
@@ -1,20 +0,0 @@
-PROG = gtags
-CC = gcc
-LIBS = -L../lib -lutil -ldb
-CFLAGS = -O -I../lib -I/usr/include/db
-DEPLIBS= ../lib/libutil.a
-OBJS = gtags.o
-BINDIR = /usr/bin
-MANDIR = /usr/man
-
-all: $(PROG)
-
-$(PROG): $(OBJS) $(DEPLIBS)
- $(CC) -o $(PROG) $(OBJS) $(LIBS)
-install:
- cp $(PROG) $(BINDIR)
- chmod 755 $(BINDIR)/$(PROG)
- cp $(PROG).1 $(MANDIR)/man1
- chmod 644 $(MANDIR)/man1/$(PROG).1
-clean:
- rm -f $(PROG) $(OBJS)
diff --git a/contrib/global/htags/Makefile.generic b/contrib/global/htags/Makefile.generic
deleted file mode 100644
index d782f43..0000000
--- a/contrib/global/htags/Makefile.generic
+++ /dev/null
@@ -1,11 +0,0 @@
-PROG = htags
-BINDIR = /usr/bin
-MANDIR = /usr/man
-
-all:
-install:
- cp $(PROG).pl $(BINDIR)/$(PROG)
- chmod 755 $(BINDIR)/$(PROG)
- cp $(PROG).1 $(MANDIR)/man1
- chmod 644 $(MANDIR)/man1/$(PROG).1
-clean:
diff --git a/contrib/global/lib/Makefile.generic b/contrib/global/lib/Makefile.generic
deleted file mode 100644
index 2cd87fb..0000000
--- a/contrib/global/lib/Makefile.generic
+++ /dev/null
@@ -1,14 +0,0 @@
-LIB = libutil.a
-CC = gcc
-AR = ar
-CFLAGS = -O -I../lib -I/usr/include/db
-OBJS = tag.o tab.o strop.o mgets.o lookup.o gtagsopen.o getdbpath.o \
- find.o dbname.o dbio.o test.o makepath.o locatestring.o
-all: $(LIB)
-
-$(LIB): $(OBJS)
- $(AR) cq $(LIB) $(OBJS)
-install:
- @echo -n
-clean:
- rm -f $(LIB) $(OBJS)
diff --git a/contrib/global/systags/Makefile.generic b/contrib/global/systags/Makefile.generic
deleted file mode 100644
index a1a5ca6..0000000
--- a/contrib/global/systags/Makefile.generic
+++ /dev/null
@@ -1,8 +0,0 @@
-PROG = systags
-BINDIR = /usr/bin
-
-all:
-install:
- cp $(PROG).sh $(BINDIR)/$(PROG)
- chmod 755 $(BINDIR)/$(PROG)
-clean:
OpenPOWER on IntegriCloud