X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2FMakefile;h=7ca0495e3f4c76495503b96db16020e45b669179;hp=c9da6d9b8ca9a5fe434d010248eb00a6a45c1470;hb=4a777954e1ede2057bba90219e8dd406f1f7f681;hpb=54382f8b0765693c7aa5714c94d7d21dc41f1fc4 diff --git a/src/Makefile b/src/Makefile index c9da6d9b..7ca0495e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -75,6 +75,7 @@ help: @echo "make osx-ppc64 > PPC-Mac OS X 64 bit. Compiler = g++" @echo "make osx-x86 > x86-Mac OS X 32 bit. Compiler = g++" @echo "make osx-x86_64 > x86-Mac OS X 64 bit. Compiler = g++" + @echo "make strip > Strip executable" @echo "make clean > Clean up" @echo "" @@ -157,6 +158,9 @@ osx-x86_64: LDFLAGS+='-arch x86_64' \ all +strip: + strip $(EXE) + ### Compilation. Do not change $(EXE): $(OBJS)