grid-uxn/Makefile

14 lines
247 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
./in /dev/ttyACM0 | uxnemu test.rom | ./out /dev/ttyACM0