This file is indexed.

/usr/share/doc/libmeanwhile-dev/samples/Makefile.am is in libmeanwhile-dev 1.0.2-5.

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
SAMPLES_SRC = \
	logging_proxy.c \
	login_server.c \
	nocipher_proxy.c \
	sendmessage.c \
	socket.c \
	redirect_server.c

SAMPLES = $(SAMPLES_SRC:.c=)


sample_SCRIPTS = \
	build

sample_DATA = \
	README \
	$(SAMPLES_SRC)


sampledir = $(datadir)/doc/@PACKAGE@-doc-@VERSION@/samples


EXTRA_DIST = $(sample_DATA) $(sample_SCRIPTS)


$(SAMPLES):	%: %.c
	$(CC) $< -o $@ $(GLIB_CFLAGS) $(GLIB_LIBS) `PKG_CONFIG_PATH="$(prefix)/lib/pkgconfig" $(PKG_CONFIG) --cflags --libs meanwhile`


clean-local:
	rm -f $(SAMPLES)