mirror of
https://github.com/samsonjs/compiler.git
synced 2026-03-25 08:45:52 +00:00
7 lines
140 B
Makefile
7 lines
140 B
Makefile
build:
|
|
ruby test.rb test.code
|
|
nasm -f elf -g -o test.o test.asm
|
|
ld -o test test.o
|
|
# $? indicates success as per unix convention
|
|
./test
|
|
|