shithub: moonfish

Download patch

ref: f28af5688c3c3516fa2fa537bd0b79cabe4af665
parent: 09d280996b26c812b297bf7838371c5b259658c9
author: zamfofex <zamfofex@twdb.moe>
date: Wed Oct 11 08:25:39 EDT 2023

simplify makefile slightly

--- a/makefile
+++ b/makefile
@@ -15,8 +15,8 @@
 
 else
 
-moonfish: moonfish.h *.c net/none.c
-	$(cc) -o moonfish net/none.c *.c
+moonfish: moonfish.h *.c
+	$(cc) -o moonfish *.c
 
 endif
 
--- a/net/none.c
+++ /dev/null
@@ -1,5 +1,0 @@
-#include <stdlib.h>
-
-#include "../moonfish.h"
-
-char *moonfish_network = NULL;
--