uxn-utils/ref/makefile

17 lines
236 B
Makefile
Raw Normal View History

2024-01-10 16:25:55 -05:00
.PHONY: all run test format clean
2024-01-10 15:33:12 -05:00
all: bin/uxn
run: all
2024-01-10 15:49:22 -05:00
@ bin/uxn test.bin "Text from arg"
2024-01-10 16:25:55 -05:00
test:
@ bin/uxn opc-test.bin
2024-01-10 15:33:12 -05:00
format:
@ clang-format -i uxn.c
clean:
@ rm -r -f bin
bin/uxn: uxn.c
@ mkdir -p bin/
@ cc uxn.c -o bin/uxn