uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit cd7cc2ac4f187f587832a569faedcf5ed5c8db31
parent 23a514b3ba66735814a8cf51f5f8a701796a16de
Author: Sigrid Solveig Haflínudóttir <ftrvxmtrx@gmail.com>
Date:   Wed, 29 Dec 2021 18:07:28 +0100

fix 9front build

Diffstat:
Mmkfile | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/mkfile b/mkfile @@ -7,7 +7,9 @@ CFLAGS=$CFLAGS -D__plan9__ -I/sys/include/npe -I/sys/include/npe/SDL2 HFILES=\ /sys/include/npe/stdio.h\ src/devices/audio.h\ + src/devices/controller.h\ src/devices/file.h\ + src/devices/mouse.h\ src/devices/screen.h\ src/uxn.h\ @@ -35,13 +37,13 @@ bin/uxncli: file.$O uxncli.$O uxn.$O bin/uxnasm: uxnasm.$O $LD $LDFLAGS -o $target $prereq -bin/uxnemu: uxnemu.$O audio.$O file.$O screen.$O uxn.$O +bin/uxnemu: uxnemu.$O audio.$O controller.$O file.$O mouse.$O screen.$O uxn.$O $LD $LDFLAGS -o $target $prereq (uxnasm|uxncli|uxnemu|uxn)\.$O:R: src/\1.c $CC $CFLAGS -Isrc -o $target src/$stem1.c -(audio|file|screen)\.$O:R: src/devices/\1.c +(audio|controller|file|mouse|screen)\.$O:R: src/devices/\1.c $CC $CFLAGS -Isrc -o $target src/devices/$stem1.c nuke:V: clean