This file is indexed.

/usr/share/doc/python-pyrex/Demos/Makefile.nodistutils is in python-pyrex 0.9.8.5-2ubuntu2.

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
PYHOME = $(HOME)/pkg/python/version
PYINCLUDE = \
	-I$(PYHOME)/include/python2.2 \
	-I$(PYHOME)/$(ARCH)/include/python2.2

%.c:	%.pyx
	../bin/pyrexc $<

%.o:	%.c
	gcc -c -fPIC $(PYINCLUDE) $<

%.so:	%.o
	gcc -shared $< -lm -o $@

all:	primes.so spam.so numeric_demo.so

clean:
	@echo Cleaning Demos
	@rm -f *.c *.o *.so *~ core core.*
	@cd callback; $(MAKE) clean
	@cd embed; $(MAKE) clean