This file is indexed.

/usr/share/doc/libsnacc-dev/examples/c++-examples/test-lib/makefile is in libsnacc-dev 1.3bbn-11ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# c++-examples/test-lib/makefile
#
# $Header: /usr/app/odstb/CVS/snacc/c++-examples/test-lib/makefile,v 1.7 1997/03/03 11:58:30 wan Exp $
# $Log: makefile,v $
# Revision 1.7  1997/03/03 11:58:30  wan
# Final pre-delivery stuff (I hope).
#
# Revision 1.6  1997/02/28 13:39:41  wan
# Modifications collected for new version 1.3: Bug fixes, tk4.2.
#
# Revision 1.5  1995/07/24 15:31:14  rj
# changed `_' to `-' in file names.
#
# Revision 1.4  1995/02/13  14:58:17  rj
# augment CPPFLAGS, not overwrite
#
# Revision 1.3  1994/09/01  02:26:58  rj
# use CXX instead of CC to get another default linkage
#
# Revision 1.2  1994/08/31  21:44:25  rj
# rebuild the executables when the c++-lib is newer.
#
# Revision 1.1  1994/08/31  08:48:17  rj
# first check-in. for a list of changes to the snacc-1.1 distribution please refer to the ChangeLog.
#

#include ../../makehead

TOP		= /usr

ASN1_C++_LIB_DIR	= $(TOP)/lib
ASN1_C++_INC_DIR	= $(TOP)/include/snacc/c++
ASN1_C++_LIB		= $(ASN1_C++_LIB_DIR)/libasn1c++.a

CC		= $(CXX)
CPPFLAGS	+= -g -I$(TOP) -I$(ASN1_C++_INC_DIR)

CFILES = \
	test-lib.cpp

DISTFILES = \
	README		\
	makefile	\
	$(CFILES)

#-------------------------------------------------------------------------------

default::	check

check::		test-lib
		./test-lib

test-lib:	$(ASN1_C++_LIB) test-lib.o
		$(CXX) $(LDFLAGS) -o $@ test-lib.o $(ASN1_C++_LIB) $(LIBS)

clean::
		$(RM) *.o *~ .emacs* test-lib core

#include ../../maketail