diff --git a/.appveyor.yml b/.appveyor.yml index e661a74ea..f94b8804f 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -21,6 +21,10 @@ environment: BASH: C:\msys64\usr\bin\bash CC: gcc +branches: + except: + - hash-mode-plugin + # if we have too many commits at the same time, we might need to download more than just the last commit for appveyor to succeed # otherwise we get the error: "fatal: reference is not a tree " clone_depth: 15 diff --git a/src/Makefile b/src/Makefile index 8637ffc79..6fe064a60 100644 --- a/src/Makefile +++ b/src/Makefile @@ -540,13 +540,14 @@ endif ## MODULE_DEPEND := src/bitops.c src/convert.c src/interface.c src/shared.c + MODULES_SRC := $(wildcard modules/*.c) -MODULES := $(patsubst %.c, %.so, $(MODULES_SRC)) +MODULES_LIB := $(patsubst %.c, %.so, $(MODULES_SRC)) modules/module_%.so: modules/module_%.c $(CC) $(CFLAGS_NATIVE) $< -o $@ -shared -fPIC $(MODULE_DEPEND) -modules: $(MODULES) +modules: $(MODULES_LIB) ## ## cross compiled hashcat