File stockfish-remove-net.patch of Package stockfish
Index: Stockfish-sf_17.1/src/Makefile
===================================================================
--- Stockfish-sf_17.1.orig/src/Makefile
+++ Stockfish-sf_17.1/src/Makefile
@@ -927,20 +927,20 @@ ifneq ($(SUPPORTED_ARCH), true)
endif
-.PHONY: help analyze build profile-build strip install clean net \
+.PHONY: help analyze build profile-build strip install clean \
objclean profileclean config-sanity \
icx-profile-use icx-profile-make \
gcc-profile-use gcc-profile-make \
clang-profile-use clang-profile-make FORCE \
format analyze
-analyze: net config-sanity objclean
+analyze: config-sanity objclean
$(MAKE) -k ARCH=$(ARCH) COMP=$(COMP) $(OBJS)
-build: net config-sanity
+build: config-sanity
$(MAKE) ARCH=$(ARCH) COMP=$(COMP) all
-profile-build: net config-sanity objclean profileclean
+profile-build: config-sanity objclean profileclean
@echo ""
@echo "Step 1/4. Building instrumented executable ..."
$(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_make)
@@ -999,7 +999,7 @@ default:
all: $(EXE) .depend
-config-sanity: net
+config-sanity:
@echo ""
@echo "Config:" && \
echo "debug: '$(debug)'" && \
@@ -1118,6 +1118,6 @@ icx-profile-use:
.depend: $(SRCS)
-@$(CXX) $(DEPENDFLAGS) -MM $(SRCS) > $@ 2> /dev/null
-ifeq (, $(filter $(MAKECMDGOALS), help strip install clean net objclean profileclean config-sanity))
+ifeq (, $(filter $(MAKECMDGOALS), help strip install clean objclean profileclean config-sanity))
-include .depend
endif