Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 27ea6be4db5c4ab161dbab335782ff77 > files > 166

python-pyrex-0.9.9-6.mga4.noarch.rpm

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:	cheese.so

clean:
	@echo Cleaning Demos/callback
	@rm -f *.c *.o *.so *~ core core.*