| ... | ... |
@@ -7,7 +7,9 @@ CFLAGS=$CFLAGS -D__plan9__ -I/sys/include/npe -I/sys/include/npe/SDL2 |
| 7 | 7 |
HFILES=\ |
| 8 | 8 |
/sys/include/npe/stdio.h\ |
| 9 | 9 |
src/devices/audio.h\ |
| 10 |
+ src/devices/controller.h\ |
|
| 10 | 11 |
src/devices/file.h\ |
| 12 |
+ src/devices/mouse.h\ |
|
| 11 | 13 |
src/devices/screen.h\ |
| 12 | 14 |
src/uxn.h\ |
| 13 | 15 |
|
| ... | ... |
@@ -35,13 +37,13 @@ bin/uxncli: file.$O uxncli.$O uxn.$O |
| 35 | 37 |
bin/uxnasm: uxnasm.$O |
| 36 | 38 |
$LD $LDFLAGS -o $target $prereq |
| 37 | 39 |
|
| 38 |
-bin/uxnemu: uxnemu.$O audio.$O file.$O screen.$O uxn.$O |
|
| 40 |
+bin/uxnemu: uxnemu.$O audio.$O controller.$O file.$O mouse.$O screen.$O uxn.$O |
|
| 39 | 41 |
$LD $LDFLAGS -o $target $prereq |
| 40 | 42 |
|
| 41 | 43 |
(uxnasm|uxncli|uxnemu|uxn)\.$O:R: src/\1.c |
| 42 | 44 |
$CC $CFLAGS -Isrc -o $target src/$stem1.c |
| 43 | 45 |
|
| 44 |
-(audio|file|screen)\.$O:R: src/devices/\1.c |
|
| 46 |
+(audio|controller|file|mouse|screen)\.$O:R: src/devices/\1.c |
|
| 45 | 47 |
$CC $CFLAGS -Isrc -o $target src/devices/$stem1.c |
| 46 | 48 |
|
| 47 | 49 |
nuke:V: clean |