1 2 3 4 5 6
CFLAGS = -O3 -fPIC -ffast-math -march=native FLAGS = -shared TARGET = lib.so $(TARGET): lib.c cc lib.c $(CFLAGS) $(FLAGS) -o $(TARGET)