# This is a comment line
PY=python3

all: *.so

*.so:	fis.pyx fastinvsqrt/fis.c
	$(PY) setup_fis.py build_ext --inplace

clean:
	rm -rf build
	rm -rf *.so
	rm -rf *.c
