diff options
Diffstat (limited to 'debian/pyrex/pyrex-0.9.9/Demos/callback/Makefile.nodistutils')
-rw-r--r-- | debian/pyrex/pyrex-0.9.9/Demos/callback/Makefile.nodistutils | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/pyrex/pyrex-0.9.9/Demos/callback/Makefile.nodistutils b/debian/pyrex/pyrex-0.9.9/Demos/callback/Makefile.nodistutils deleted file mode 100644 index 012c1a86..00000000 --- a/debian/pyrex/pyrex-0.9.9/Demos/callback/Makefile.nodistutils +++ /dev/null @@ -1,19 +0,0 @@ -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.* |