git: 9front

Download patch

ref: d73fa4625c5c1561e816847e30dda3e14a3a7c51
parent: 98977df28bc9b8cf1ce384cfdb166a7fd538a3af
author: aiju <devnull@localhost>
date: Tue Nov 20 04:22:04 EST 2018

games/md: fix mkfile

--- a/sys/src/games/md/mkfile
+++ b/sys/src/games/md/mkfile
@@ -3,7 +3,7 @@
 BIN=/$objtype/bin/games
 TARG=md
 OFILES=\
-	../blit/cpu.$O\
+	cpu.$O\
 	mem.$O\
 	md.$O\
 	vdp.$O\
@@ -16,3 +16,6 @@
 </sys/src/cmd/mkone
 eui.$O: ../eui.c
 	$CC $CFLAGS ../eui.c
+
+cpu.$O: ../blit/cpu.c
+	$CC $CFLAGS ../blit/cpu.c
--