cpp.js/Makefile
Gers2017 9898335592 refactor(build step): Add Makefile
update .gitignore
add simple makefile
2023-05-04 16:20:52 -06:00

15 lines
130 B
Makefile

CC=rustc
default: build-rs
build-rs:
node main.js main.cpp && $(CC) main.rs -o main.out
run:
./main.out
clean:
rm *.out