diff -Naur gc-7f6f17c8b3425df6cd27d6f9385265b23034a793-armeabi-v7a-build/src/Makefile gc-7f6f17c8b3425df6cd27d6f9385265b23034a793-armeabi-v7a-build_new/src/Makefile
@@ -0,0 +1,19 @@
+CFLAGS=-g -fPIC -Wall -Wextra -pedantic -I./include
+LDFLAGS=
+
+SRCS=gc.c log.c
+OBJS=$(SRCS:.c=.o)
+
+LIB_NAME=libgc.so
+
+all: $(LIB_NAME)
+
+%.o: %.c
+ $(CC) $(CFLAGS) -c $< -o $@
+$(LIB_NAME): $(OBJS)
+ $(CC) -shared $(OBJS) -o $@
+
+clean:
+ rm -f $(OBJS) $(LIB_NAME)
+
+.PHONY: all clean
diff -Naur gc-7f6f17c8b3425df6cd27d6f9385265b23034a793-armeabi-v7a-build/test/Makefile gc-7f6f17c8b3425df6cd27d6f9385265b23034a793-armeabi-v7a-build_new/test/Makefile
@@ -1,4 +1,3 @@
-CC=clang
CFLAGS=-g -Wall -Wextra -pedantic -I../include -fprofile-arcs -ftest-coverage
LDFLAGS=-g -L../build/src -L../build/test --coverage
LDLIBS=