This file is indexed.

/usr/share/doc/libdockapp-dev/examples/basic/Imakefile is in libdockapp-dev 1:0.6.3-1.

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
# $Id: Imakefile,v 1.4 2002/10/16 07:19:18 dalroi Exp $

STD_INCLUDES = $(INC_PATH) -I/usr/local/include -I.
DEPLIBS = $(DEPXLIB) 

LOCAL_LIBRARIES = $(LIB_PATH) -L/usr/local/lib -L/usr/X11R6/lib \
		    -L../../src/.libs \
		  -ldockapp -lXpm -lX11

SRCS = basic.c
OBJS = basic.o


XCOMM -----------------------------------------------------------------------
XCOMM    knowledge about availability of library-functions
XCOMM -----------------------------------------------------------------------

# Has srandomdev function?
#	+ FreeBSD 4.6, OpenBSD 3.1, 4.2BSD, MacOS X
#	- Linux, Solaris, HP UX 11.00

#if defined(FreeBSDArchitecture) || defined(OpenBSDArchitecture) || \
defined(NetBSDArchitecture) || defined(DarwinArchitecture)
CFLAGS += -DHAS_SRANDOMDEV
#endif

CFLAGS += -DSRANDOMFUNC=$(SRANDOM_FUNC)

ComplexProgramTargetNoMan(basic)