Browse code

mkfile: update; disable broken asma.usm

Sigrid Solveig Haflínudóttir authored on 26/04/2021 06:39:03
Showing 1 changed files
... ...
@@ -1,13 +1,14 @@
1 1
 </$objtype/mkfile
2 2
 
3 3
 TARG=assembler debugger emulator
4
-USM=`{walk -f projects/ | grep '\.usm$' | grep -v blank.usm}
4
+USM=`{walk -f projects/ | grep '\.usm$' | grep -v blank.usm | grep -v asma.usm}
5 5
 ROM=${USM:%.usm=%.rom}
6 6
 CFLAGS=$CFLAGS -I/sys/include/npe
7 7
 BIN=/$objtype/bin/uxn
8 8
 HFILES=\
9 9
 	/sys/include/npe/stdio.h\
10 10
 	src/apu.h\
11
+	src/mpu.h\
11 12
 	src/ppu.h\
12 13
 	src/uxn.h\
13 14
 
... ...
@@ -41,7 +42,7 @@ $O.assembler: assembler.$O
41 42
 
42 43
 $O.debugger: debugger.$O uxn.$O
43 44
 
44
-$O.emulator: emulator.$O apu.$O ppu.$O uxn.$O
45
+$O.emulator: emulator.$O apu.$O mpu.$O ppu.$O uxn.$O
45 46
 
46 47
 %.$O: src/%.c
47 48
 	$CC $CFLAGS -Isrc -o $target src/$stem.c