From fe89bf90759716236c0d59e98d93fbe8a25e7196 Mon Sep 17 00:00:00 2001 From: wes Date: Fri, 7 Jul 2017 10:12:10 -0400 Subject: [PATCH] remove hardcoded directory --- .bfilter.c.swo | Bin 16384 -> 16384 bytes .bfilter.py.swo | Bin 12288 -> 12288 bytes Makefile | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bfilter.c.swo b/.bfilter.c.swo index 8df899291b5373495006f75f391c0e2df2ed0452..8d23e6865d9be42ce141160bd4449e26f8a62db4 100644 GIT binary patch delta 45 zcmZo@U~Fh$lut4U^Ym4)&@*5F0s#gFmuc~lD|6BqT^$%0%2SIcPE_6Kvd10(0?Q14 delta 45 zcmZo@U~Fh$lut4U^Ym4)&@*5F0s#gF=?U?Xo3qmxT^$%0%2SIcPE_6Kvd10(|62@M diff --git a/.bfilter.py.swo b/.bfilter.py.swo index a6b3ff8f6c80561108108d1c57fbea93df501739..104aa52dae77c4f664e5015af085960d99655206 100644 GIT binary patch delta 43 xcmZojXh@JxG6?hZRj|-AU;qLE28OI@@sYc7(imMG7#PY^iziN0-RQDM9{~A{3}gTR delta 43 xcmZojXh@JxG6?hZRj|-AU;qLE28P6G@sT@n(imMG7#PY^iziN0-RQDM9{~8H3|RmG 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;