grid-uxn/Makefile

14 lines
248 B
Makefile
Raw Normal View History

2021-09-09 19:08:50 +00:00
all: in out test
in: in.c
gcc in.c -Wall -lmonome -o in
out: out.c
gcc out.c -Wall -lmonome -o out
2021-09-09 19:30:44 +00:00
basic.rom: examples/basic.tal
uxnasm examples/basic.tal basic.rom
2021-09-09 19:08:50 +00:00
2021-09-09 19:30:44 +00:00
test: basic.rom
2021-09-10 13:53:47 +00:00
./in /dev/ttyACM0 | uxnemu basic.rom | ./out /dev/ttyACM0