From 6eca83400a8f801aebb5e2d59e2e7e1062ac4403 Mon Sep 17 00:00:00 2001 From: James Booth Date: Fri, 23 May 2014 22:42:51 +0100 Subject: [PATCH] Removed -lprofanity flag from compilation of test-c-plugin.c Flag is used at the linking stage. --- test-c-plugin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-c-plugin/Makefile b/test-c-plugin/Makefile index 66ae3e6..1ed724b 100644 --- a/test-c-plugin/Makefile +++ b/test-c-plugin/Makefile @@ -5,7 +5,7 @@ all: test-c-plugin.so %.o:%.c $(CC) $(INCLUDE) -D_GNU_SOURCE -D_BSD_SOURCE -fpic -O3 -std=c99 \ - -Wall -Wextra -lprofanity -pedantic -c -o $@ $< + -Wall -Wextra -pedantic -c -o $@ $< clean: $(RM) test-c-plugin.so