Skip to content

Instantly share code, notes, and snippets.

@cournape
Created June 24, 2013 19:06
Show Gist options
  • Save cournape/5852578 to your computer and use it in GitHub Desktop.
Save cournape/5852578 to your computer and use it in GitHub Desktop.
PHONY: all
CC = gcc
CFLAGS = -I/usr/include/python2.7 -W -Wall -fPIC
ufunc.so: my_ufunc.o ufunc.o
$(LD) $< -o $@
my_ufunc.o: my_ufunc.c my_ufunc.h
$(CC) $(CFLAGS) -c $< -o $@
ufunc.o: ufunc.c my_ufunc.h
$(CC) $(CFLAGS) -c $< -o $@
ufunc.c: ufunc.pyx
cython $< -o $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment