Initial commit

This commit is contained in:
James Booth
2013-09-01 16:44:19 +01:00
commit 54417a9ed2
11 changed files with 405 additions and 0 deletions

11
test-c-plugin/Makefile Normal file
View File

@@ -0,0 +1,11 @@
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 -lprofanity -pedantic -c -o $@ $<
clean:
$(RM) test-c-plugin.so