mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-23 07:08:19 +00:00
Compile macOS: Fixed makefile target 'clean' to correctly remove *.dSYM folders
This commit is contained in:
parent
b35a7fc72e
commit
75d801e1d7
@ -20,6 +20,7 @@
|
|||||||
## Improvements
|
## Improvements
|
||||||
##
|
##
|
||||||
|
|
||||||
|
- Compile macOS: Fixed makefile target 'clean' to correctly remove *.dSYM folders
|
||||||
- OpenCL Runtime: Reinterpret return code CL_DEVICE_NOT_FOUND from clGetDeviceIDs() as non-fatal
|
- OpenCL Runtime: Reinterpret return code CL_DEVICE_NOT_FOUND from clGetDeviceIDs() as non-fatal
|
||||||
|
|
||||||
* changes v5.1.0 -> v6.0.0
|
* changes v5.1.0 -> v6.0.0
|
||||||
|
@ -354,13 +354,13 @@ default: $(HASHCAT_FRONTEND) modules
|
|||||||
clean:
|
clean:
|
||||||
$(RM) -f $(HASHCAT_FRONTEND)
|
$(RM) -f $(HASHCAT_FRONTEND)
|
||||||
$(RM) -f $(HASHCAT_LIBRARY)
|
$(RM) -f $(HASHCAT_LIBRARY)
|
||||||
$(RM) -f modules/*.dSYM
|
$(RM) -rf modules/*.dSYM
|
||||||
$(RM) -f modules/*.dll
|
$(RM) -f modules/*.dll
|
||||||
$(RM) -f modules/*.so
|
$(RM) -f modules/*.so
|
||||||
$(RM) -f obj/*/*/*.o
|
$(RM) -f obj/*/*/*.o
|
||||||
$(RM) -f obj/*.o
|
$(RM) -f obj/*.o
|
||||||
$(RM) -f obj/*.a
|
$(RM) -f obj/*.a
|
||||||
$(RM) -f *.dSYM
|
$(RM) -rf *.dSYM
|
||||||
$(RM) -f *.dylib
|
$(RM) -f *.dylib
|
||||||
$(RM) -f *.bin *.exe
|
$(RM) -f *.bin *.exe
|
||||||
$(RM) -f *.pid
|
$(RM) -f *.pid
|
||||||
|
Loading…
Reference in New Issue
Block a user