all: raster_fx.so

raster_fx.so: raster_fx.c
	gcc -O2 -shared -fPIC -o $@ $< -lm

clean:
	rm -f raster_fx.so *.o *.pyc
