Files
cproof-plugins/test-c-plugin/Makefile
James Booth 6eca83400a Removed -lprofanity flag from compilation of test-c-plugin.c
Flag is used at the linking stage.
2014-05-23 22:42:51 +01:00

12 lines
226 B
Makefile

all: test-c-plugin.so
%.so:%.o
$(CC) -shared -fpic -lprofanity -o $@ $^
%.o:%.c
$(CC) $(INCLUDE) -D_GNU_SOURCE -D_BSD_SOURCE -fpic -O3 -std=c99 \
-Wall -Wextra -pedantic -c -o $@ $<
clean:
$(RM) test-c-plugin.so