From 93c9109799e2d42e1c1d30fc7a82bcb2284c85ea Mon Sep 17 00:00:00 2001 From: Luc Girod Date: Fri, 18 Apr 2014 21:49:16 +0200 Subject: [PATCH] Makefile fix, gitignore from Martin Weber --- .gitignore | 2 ++ Makefile | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .gitignore 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)