From: Hans-Bernhard B. <br...@us...> - 2017-10-15 00:10:36
|
Update of /cvsroot/cscope/cscope/contrib In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv9402/contrib Modified Files: Makefile.in README ocs Log Message: Prepare for move away from CVS, to git. Purge $Id$ tags and similar Rebuild autotools Add yacc flags and automake hint about 'egrep.h' Index: Makefile.in =================================================================== RCS file: /cvsroot/cscope/cscope/contrib/Makefile.in,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** Makefile.in 20 Nov 2014 21:12:54 -0000 1.16 --- Makefile.in 15 Oct 2017 00:10:33 -0000 1.17 *************** *** 1,6 **** ! # Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ ! # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation --- 1,6 ---- ! # Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ ! # Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation *************** *** 16,20 **** VPATH = @srcdir@ ! am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ --- 16,30 ---- VPATH = @srcdir@ ! am__is_gnu_make = { \ ! if test -z '$(MAKELEVEL)'; then \ ! false; \ ! elif test -n '$(MAKE_HOST)'; then \ ! true; \ ! elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ ! true; \ ! else \ ! false; \ ! fi; \ ! } am__make_running_with_option = \ case $${target_option-} in \ *************** *** 80,85 **** host_triplet = @host@ subdir = contrib - DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ - $(top_srcdir)/mkinstalldirs README ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ --- 90,93 ---- *************** *** 87,90 **** --- 95,99 ---- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) + DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h *************** *** 140,143 **** --- 149,154 ---- esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) + am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/mkinstalldirs \ + README DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ *************** *** 262,266 **** $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu contrib/Makefile - .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ --- 273,276 ---- *************** *** 469,472 **** --- 479,484 ---- uninstall-binSCRIPTS + .PRECIOUS: Makefile + # Tell versions [3.59,3.63) of GNU make to not export all variables. Index: README =================================================================== RCS file: /cvsroot/cscope/cscope/contrib/README,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** README 26 May 2011 17:47:25 -0000 1.4 --- README 15 Oct 2017 00:10:33 -0000 1.5 *************** *** 1,4 **** Contributed addons and wrappers for cscope - $Id$ ocs - wrapper for cscope providing database generation through recursive --- 1,3 ---- Index: ocs =================================================================== RCS file: /cvsroot/cscope/cscope/contrib/ocs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** ocs 21 Jun 2004 18:13:21 -0000 1.4 --- ocs 15 Oct 2017 00:10:33 -0000 1.5 *************** *** 1,4 **** #!/bin/sh - # $Id$ # This utility maintains the database for cscope on a recursive dir set # Author: donwo Tue Jun 25 15:36:39 PDT 1996 --- 1,3 ---- |