shithub: moonfish

Download patch

ref: f4a1bc7b7e2a7f68b74ae757e452cab54819b3e9
parent: 70d07b14a8e256a5bcc16f62191207f50bde742c
author: zamfofex <zamfofex@twdb.moe>
date: Sun Jan 26 07:47:45 EST 2025

adjust makefile style

--- a/makefile
+++ b/makefile
@@ -14,7 +14,7 @@
 all: moonfish lichess analyse chat
 
 moonfish $(tools):
-	$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(src) -o $@ $(cflags) $(LIBS)
+	$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $(src) $(cflags) $(LIBS)
 
 $(tools): moonfish.h tools/tools.h tools/utils.c chess.c
 
--