This file is indexed.

/usr/share/doc/libsx-dev/examples/creq/makefile is in libsx-dev 2.05-7.

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
#
#
include ../libsx_defs


OBJS       = main.o creq.o

all : creq

creq : $(OBJS) 
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)  -o $@ $(OBJS) $(LIBS)

main.o : main.c creq.h

creq.o : creq.c

clean:
	rm -f *.o *~ core creq