Browse code

fix Plan 9 build again

Sigrid Solveig Haflínudóttir authored on 27/06/2021 15:23:27
Showing 1 changed files
... ...
@@ -7,7 +7,6 @@ CFLAGS=$CFLAGS -D__plan9__ -DNO_PORTMIDI -I/sys/include/npe -I/sys/include/npe/S
7 7
 HFILES=\
8 8
 	/sys/include/npe/stdio.h\
9 9
 	src/devices/apu.h\
10
-	src/devices/mpu.h\
11 10
 	src/devices/ppu.h\
12 11
 	src/uxn.h\
13 12
 
... ...
@@ -35,13 +34,13 @@ bin/uxncli: uxncli.$O uxn.$O
35 34
 bin/uxnasm: uxnasm.$O
36 35
 	$LD $LDFLAGS -o $target $prereq
37 36
 
38
-bin/uxnemu: uxnemu.$O apu.$O mpu.$O ppu.$O uxn.$O
37
+bin/uxnemu: uxnemu.$O apu.$O ppu.$O uxn.$O
39 38
 	$LD $LDFLAGS -o $target $prereq
40 39
 
41 40
 (uxnasm|uxncli|uxnemu|uxn)\.$O:R: src/\1.c
42 41
 	$CC $CFLAGS -Isrc -o $target src/$stem1.c
43 42
 
44
-(apu|mpu|ppu)\.$O:R: src/devices/\1.c
43
+(apu|ppu)\.$O:R: src/devices/\1.c
45 44
 	$CC $CFLAGS -Isrc -o $target src/devices/$stem1.c
46 45
 
47 46
 nuke:V: clean