diff --git a/.bfilter.c.swo b/.bfilter.c.swo index 8df8992..8d23e68 100644 Binary files a/.bfilter.c.swo and b/.bfilter.c.swo differ diff --git a/.bfilter.py.swo b/.bfilter.py.swo index a6b3ff8..104aa52 100644 Binary files a/.bfilter.py.swo and b/.bfilter.py.swo differ diff --git a/Makefile b/Makefile index 086bb2c..48966fe 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ default: bfilter.c bfilter.h - $(CC) -g -Wall -Wextra -std=gnu99 -Wpointer-arith -Wmissing-prototypes -lfnv -lm -L. -O3 ./bfilter.c -o test -Wl,-rpath,/home/wes/bfilter; + $(CC) -g -Wall -Wextra -std=gnu99 -Wpointer-arith -Wmissing-prototypes -lfnv -lm -L. -O3 ./bfilter.c -o test -Wl,-rpath,./; lib: bfilter.c bfilter.h - $(CC) -g -DLIB -c -fpic -Wall -Wextra -pedantic -Wpointer-arith -Werror -std=c99 -lfnv -lm -L. -O3 ./bfilter.c -Wl,-rpath,/home/wes/bfilter; + $(CC) -g -DLIB -c -fpic -Wall -Wextra -pedantic -Wpointer-arith -Werror -std=c99 -lfnv -lm -L. -O3 ./bfilter.c -Wl,-rpath,/; $(CC) -shared -o bfilter.so bfilter.o;