0N/A#
3261N/A# Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
2362N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
2362N/A# by Oracle in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/A# questions.
0N/A#
0N/A
0N/A#
0N/A# The cscope.out file is made in the current directory and spans the entire
0N/A# source tree.
0N/A#
0N/A# Things to note:
0N/A# 1. We use relative names for cscope.
0N/A# 2. We *don't* remove the old cscope.out file, because cscope is smart
0N/A# enough to only build what has changed. It can be confused, however,
0N/A# if files are renamed or removed, so it may be necessary to manually
0N/A# remove cscope.out if a lot of reorganization has occurred.
0N/A#
0N/ACSDIRS = $(JDK_TOPDIR)/src $(JDK_TOPDIR)/build
0N/ACSINCS = $(CSDIRS:%=-I%)
0N/A
0N/A#
0N/A# Set CSFLAGS env variable to -b when using fast cscope to build the fast
0N/A# (but large) cscope data bases.
0N/A#
0N/ACSCOPE = cscope-fast
0N/Aifeq ($(CSCOPE), cscope-fast)
0N/ACSFLAGS = -b
0N/Aendif
0N/A
0N/A#
0N/A# Adding .java files pushes the file count of a full workspace up about 2500
0N/A# files, which slows database lookup. Thus allow these files to be added from
0N/A# the environment (CSCLASSES=yes).
0N/A#
0N/Aifdef CSCLASSES
0N/AADDCLASSES= -o -name '*.java'
0N/Aendif
0N/A
0N/A#
0N/A# Adding CClassHeaders also pushes the file count of a full workspace up about
0N/A# 200 files (these files also don't exist in a new workspace, and thus will
0N/A# cause the recreation of the database as they get created, which might seem
0N/A# A little confusing). Thus allow these files to be added from the environment
0N/A# (CSHEADERS=yes).
0N/A#
0N/Aifndef CSHEADERS
0N/ARMCCHEADERS= -o -name CClassHeaders
0N/Aendif
0N/A
0N/A
0N/A.PRECIOUS: cscope.out
0N/A
0N/Acscope.out: cscope.files FRC
0N/A $(CSCOPE) $(CSFLAGS)
0N/A
0N/A#
0N/A# What files should we include? A simple rule might be just those files under
0N/A# SCM control, however this would miss files we create like the opcodes and
0N/A# CClassHeaders. The following attempts to find everything that is *useful*.
2812N/A# (demo directories contain many .java files
0N/A# that probably aren't useful for development, and the pkgarchive may contain
0N/A# duplicates of files within the source hierarchy). The ordering of the .raw
0N/A# file is an attempt to make cscope display the most relevant files first.
0N/A#
0N/Acscope.files: FRC
0N/A @-$(RM) cscope.files cscope.files.raw
0N/A echo "$(CSINCS)" > cscope.files
0N/A -find $(CSDIRS) $(SCM_DIRS_prune) -o -type d \( -name '.del-*' -o \
0N/A -name '*demo' -o -name pkgarchive $(RMCCHEADERS) \) -prune -o \
0N/A -type f \( -name '*.[Ccshlxy]' -o -name '*.il' -o -name '*.cc' -o \
0N/A -name 'Makefile*' -o -name GNUmakefile -o -name '*.gmk' -o \
0N/A -name '*.cpp' $(ADDCLASSES) \) -print > cscope.files.raw
0N/A -egrep -v "\.java|\/build\/" cscope.files.raw >> cscope.files
0N/A -fgrep ".java" cscope.files.raw >> cscope.files
0N/A -fgrep "/build/" cscope.files.raw >> cscope.files
0N/A @-$(RM) cscope.files.raw
0N/A
0N/Acscope.clean:
0N/A -$(RM) cscope.files cscope.files.raw cscope.out
0N/A
0N/AFRC: