
all: mult_c.so

%.o: %.c
	gcc -ffast-math -std=c99 -c -fpic -O3 $^ -o $@

%.so: %.o
	gcc -ffast-math -std=c99 -shared $^ -O3 -o lib$@

clean:
	rm -rf *~ *.so *.o 
