aboutsummaryrefslogtreecommitdiff
path: root/src/zxcvbn-c/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/zxcvbn-c/makefile')
-rw-r--r--src/zxcvbn-c/makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/zxcvbn-c/makefile b/src/zxcvbn-c/makefile
index 5c3f5455..7d823aea 100644
--- a/src/zxcvbn-c/makefile
+++ b/src/zxcvbn-c/makefile
@@ -15,11 +15,12 @@ SONAME = libzxcvbn.so.0
WORDS = words-eng_wiki.txt words-female.txt words-male.txt words-passwd.txt words-surname.txt words-tv_film.txt
-all: test-file test-inline test-c++inline test-c++file test-shlib test-statlib
+#all: test-file test-inline test-c++inline test-c++file test-shlib test-statlib
+all: test-statlib
test-shlib: test.c $(TARGET_LIB)
if [ ! -e libzxcvbn.so ]; then ln -s $(TARGET_LIB) libzxcvbn.so; fi
- $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< -L. $(LDFLAGS) -lzxcvbn -lm
+ $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< -L. $(LDFLAGS) libzxcvbn.so -lm
$(TARGET_LIB): zxcvbn-inline-pic.o
$(CC) $(CPPFLAGS) $(CFLAGS) \