]> git.sesse.net Git - stockfish/blobdiff - src/Makefile
Clarify when forcing the moves loop
[stockfish] / src / Makefile
index 6b02425e07b2ce2f160e98ed93fa2defd3e26586..75bbbd6c40b19609e6c36c93357ea877c6b96399 100644 (file)
@@ -28,10 +28,6 @@ EXE = stockfish
 
 ### Installation dir definitions
 PREFIX = /usr/local
-# Haiku has a non-standard filesystem layout
-ifeq ($(UNAME),Haiku)
-       PREFIX=/boot/system/non-packaged
-endif
 BINDIR = $(PREFIX)/bin
 
 ### Built-in benchmark for pgo-builds
@@ -354,10 +350,6 @@ help:
        @echo "clang                   > LLVM Clang compiler"
        @echo "icc                     > Intel compiler"
        @echo ""
-       @echo "Non-standard targets:"
-       @echo ""
-       @echo "make hpux               >  Compile for HP-UX. Compiler = aCC"
-       @echo ""
        @echo "Examples. If you don't know what to do, you likely want to run: "
        @echo ""
        @echo "make build ARCH=x86-64    (This is for 64-bit systems)"
@@ -486,15 +478,3 @@ icc-profile-clean:
 
 -include .depend
 
-
-### ==========================================================================
-### Section 6. Non-standard targets
-### ==========================================================================
-
-hpux:
-       $(MAKE) \
-       CXX='/opt/aCC/bin/aCC -AA +hpxstd98 -mt +O3 -DNDEBUG -DNO_PREFETCH' \
-       CXXFLAGS="" \
-       LDFLAGS="" \
-       all
-