From aaf26dee9814cee1c02b53c70374d08488dba408 Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Tue, 31 Aug 2021 20:54:32 +0200 Subject: [PATCH] Makefile: Added wildcard include src/modules/module_*.mk directive so that plugin developers can add 3rd party libraries for their plugins --- docs/changes.txt | 3 ++- src/Makefile | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/changes.txt b/docs/changes.txt index fb015b2e6..7569a9246 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -10,7 +10,8 @@ ## Technical ## -- Disabled checking of the minimum and maximum length of the password candidate in attack-mode 9 because they are incompatible +- Makefile: Added wildcard include src/modules/module_*.mk directive so that plugin developers can add 3rd party libraries for their plugins +- Rejects: Disabled checking of the minimum and maximum length of the password candidate in attack-mode 9 because they are incompatible * changes v6.2.3 -> v6.2.4 diff --git a/src/Makefile b/src/Makefile index c1e5c140a..15d889183 100644 --- a/src/Makefile +++ b/src/Makefile @@ -786,3 +786,6 @@ hashcat.dll: src/main.c obj/combined.WIN.a $(WIN_ICONV)/lib/libiconv.a $(CC_WIN) $(CCFLAGS) $(CFLAGS_CROSS_WIN) -o $@ $^ $(LFLAGS_CROSS_WIN) -DCOMPTIME=$(COMPTIME) -DVERSION_TAG=\"$(VERSION_TAG)\" -shared endif + +# Give plugin developers a chance to add some 3rd party libraries +include $(wildcard src/modules/module_*.mk)