This file is indexed.

/usr/share/doc/libplplot12/examples/c/Makefile is in libplplot-dev 5.10.0+dfsg2-0.1ubuntu2.

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
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
# examples/c/Makefile.examples.in for PLplot
###
### Process this file with configure to produce Makefile.examples
###
# Copyright (C) 2002, 2004  Alan W. Irwin
# Copyright (C) 2004  Rafael Laboissiere
# Copyright (C) 2004  Andrew Ross
#
# This file is part of PLplot.
#
# PLplot is free software; you can redistribute it and/or modify
# it under the terms of the GNU Library General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# PLplot is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with the file PLplot; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA

CC = /usr/bin/x86_64-linux-gnu-gcc
EXEEXT = 

LIB_TAG = d
PKG_CONFIG_ENV = PKG_CONFIG_PATH="/usr/lib/x86_64-linux-gnu/pkgconfig"
RPATHCMD = 

#PLPLOTCANVAS_EXECUTABLES_list = \
#		 plplotcanvas_demo$(EXEEXT) \
#		 plplotcanvas_animation$(EXEEXT)

extXdrawable_EXECUTABLES_list = \
	extXdrawable_demo$(EXEEXT)

extcairo_EXECUTABLES_list = \
	ext-cairo-test$(EXEEXT)

EXECUTABLES_list = \
		 x00c$(EXEEXT) \
		 x01c$(EXEEXT) \
		 x02c$(EXEEXT) \
		 x03c$(EXEEXT) \
		 x04c$(EXEEXT) \
		 x05c$(EXEEXT) \
		 x06c$(EXEEXT) \
		 x07c$(EXEEXT) \
		 x08c$(EXEEXT) \
		 x09c$(EXEEXT) \
		 x10c$(EXEEXT) \
		 x11c$(EXEEXT) \
		 x12c$(EXEEXT) \
		 x13c$(EXEEXT) \
		 x14c$(EXEEXT) \
		 x15c$(EXEEXT) \
		 x16c$(EXEEXT) \
		 x17c$(EXEEXT) \
		 x18c$(EXEEXT) \
		 x19c$(EXEEXT) \
		 x20c$(EXEEXT) \
		 x21c$(EXEEXT) \
		 x22c$(EXEEXT) \
		 x23c$(EXEEXT) \
		 x24c$(EXEEXT) \
		 x25c$(EXEEXT) \
		 x26c$(EXEEXT) \
		 x27c$(EXEEXT) \
		 x28c$(EXEEXT) \
		 x29c$(EXEEXT) \
		 x30c$(EXEEXT) \
		 x31c$(EXEEXT) \
		 x32c$(EXEEXT) \
		 x33c$(EXEEXT) \
		 $(PLPLOTCANVAS_EXECUTABLES_list) \
		 $(extXdrawable_EXECUTABLES_list) \
		 $(extcairo_EXECUTABLES_list)

all: $(EXECUTABLES_list)

clean:
	rm -f $(EXECUTABLES_list)

#plplotcanvas_demo$(EXEEXT): plplotcanvas_demo.c
#	$(CC) $< -o $@ $(RPATHCMD) \
#			`$(PKG_CONFIG_ENV) pkg-config  --cflags --libs plplot$(LIB_TAG)-gnome2`

#plplotcanvas_animation$(EXEEXT): plplotcanvas_animation.c
#	$(CC) $< -o $@ $(RPATHCMD) \
#			`$(PKG_CONFIG_ENV) pkg-config  --cflags --libs plplot$(LIB_TAG)-gnome2` \
#			`pkg-config  --cflags --libs gthread-2.0`			

extXdrawable_demo$(EXEEXT): extXdrawable_demo.c
	$(CC) $< -o $@ $(RPATHCMD) \
	`$(PKG_CONFIG_ENV) pkg-config  --cflags --libs plplot$(LIB_TAG) gtk+-x11-2.0`

ext-cairo-test$(EXEEXT): ext-cairo-test.c
	$(CC) $< -o $@ $(RPATHCMD) \
	`$(PKG_CONFIG_ENV) pkg-config  --cflags --libs plplot$(LIB_TAG) cairo`

.c$(EXEEXT):
	$(CC) $< -o $@ $(RPATHCMD) `$(PKG_CONFIG_ENV) pkg-config  --cflags --libs plplot$(LIB_TAG)`

.SUFFIXES: .c $(EXEEXT)