mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-11 00:01:16 +00:00
Added hashcat32.dll and hashcat64.dll makefile targets for building hashcat windows libraries
This commit is contained in:
parent
45aae6a178
commit
07078e8c14
@ -30,6 +30,7 @@
|
|||||||
## Technical
|
## Technical
|
||||||
##
|
##
|
||||||
|
|
||||||
|
- Building: Added hashcat32.dll and hashcat64.dll makefile targets for building hashcat windows libraries
|
||||||
- Hardware management: Switched matching ADL device with OpenCL device by using PCI bus, device and function
|
- Hardware management: Switched matching ADL device with OpenCL device by using PCI bus, device and function
|
||||||
- Hardware management: Switched matching NVML device with OpenCL device by using PCI bus, device and function
|
- Hardware management: Switched matching NVML device with OpenCL device by using PCI bus, device and function
|
||||||
- Hardware management: Switched matching NvAPI device with OpenCL device by using PCI bus, device and function
|
- Hardware management: Switched matching NvAPI device with OpenCL device by using PCI bus, device and function
|
||||||
|
@ -281,7 +281,7 @@ native: hashcat
|
|||||||
binaries: linux32 linux64 win32 win64
|
binaries: linux32 linux64 win32 win64
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) -f obj/*.o *.bin *.exe *.restore *.out *.pot *.log hashcat hashcat_shared libhashcat.so core
|
$(RM) -f obj/*.o *.bin *.exe *.so *.dll *.restore *.out *.pot *.log hashcat hashcat_shared core
|
||||||
$(RM) -rf *.induct
|
$(RM) -rf *.induct
|
||||||
$(RM) -rf *.outfiles
|
$(RM) -rf *.outfiles
|
||||||
$(RM) -rf *.dSYM
|
$(RM) -rf *.dSYM
|
||||||
@ -391,3 +391,9 @@ hashcat32.exe: src/main.c $(WIN_32_OBJS)
|
|||||||
|
|
||||||
hashcat64.exe: src/main.c $(WIN_64_OBJS)
|
hashcat64.exe: src/main.c $(WIN_64_OBJS)
|
||||||
$(CC_WIN_64) $(CFLAGS_CROSS_WIN64) -o $@ $^ $(LFLAGS_CROSS_WIN64) -DCOMPTIME=$(COMPTIME) -DVERSION_TAG=\"$(VERSION_TAG)\"
|
$(CC_WIN_64) $(CFLAGS_CROSS_WIN64) -o $@ $^ $(LFLAGS_CROSS_WIN64) -DCOMPTIME=$(COMPTIME) -DVERSION_TAG=\"$(VERSION_TAG)\"
|
||||||
|
|
||||||
|
hashcat32.dll: src/main.c $(WIN_32_OBJS)
|
||||||
|
$(CC_WIN_32) $(CFLAGS_CROSS_WIN32) -o $@ $^ $(LFLAGS_CROSS_WIN32) -DCOMPTIME=$(COMPTIME) -DVERSION_TAG=\"$(VERSION_TAG)\" -shared
|
||||||
|
|
||||||
|
hashcat64.dll: src/main.c $(WIN_64_OBJS)
|
||||||
|
$(CC_WIN_64) $(CFLAGS_CROSS_WIN64) -o $@ $^ $(LFLAGS_CROSS_WIN64) -DCOMPTIME=$(COMPTIME) -DVERSION_TAG=\"$(VERSION_TAG)\" -shared
|
||||||
|
Loading…
Reference in New Issue
Block a user