mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Fix 'make strip' for mingw.
Currently the make strip target is broken on mingw as the exe name is wrong (stockfish instead of stockfish.exe). Needs some testing by mingw users (both profile-build and strip, native and cross). No functional change.
This commit is contained in:
parent
11967e89cd
commit
3df8cabb84
1 changed files with 5 additions and 1 deletions
|
@ -22,7 +22,11 @@
|
|||
### ==========================================================================
|
||||
|
||||
### Executable name
|
||||
ifeq ($(COMP),mingw)
|
||||
EXE = stockfish.exe
|
||||
else
|
||||
EXE = stockfish
|
||||
endif
|
||||
|
||||
### Installation dir definitions
|
||||
PREFIX = /usr/local
|
||||
|
@ -437,7 +441,7 @@ clean: objclean profileclean
|
|||
|
||||
# clean binaries and objects
|
||||
objclean:
|
||||
@rm -f $(EXE) $(EXE).exe *.o ./syzygy/*.o
|
||||
@rm -f $(EXE) *.o ./syzygy/*.o
|
||||
|
||||
# clean auxiliary profiling files
|
||||
profileclean:
|
||||
|
|
Loading…
Add table
Reference in a new issue