Skip to content

Commit

Permalink
Makefile: Added wildcard include src/modules/module_*.mk directive so…
Browse files Browse the repository at this point in the history
… that plugin developers can add 3rd party libraries for their plugins
  • Loading branch information
jsteube committed Aug 31, 2021
1 parent cb93875 commit aaf26de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit aaf26de

Please sign in to comment.