diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d22eb4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.o +*.so diff --git a/Makefile b/Makefile index 40e962d..35847a7 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,8 @@ PROG = libsweet.so OBJS = sweet_math.o sweet_matrix.o sweet_matrix_stack.o -CFLAGS = -pedantic -static -fPIC -LD = -shared +CFLAGS = -pedantic -fPIC +LD = -shared all: $(PROG) $(PROG): $(OBJS)