mirror of
https://github.com/Gers2017/cpp.js.git
synced 2024-10-31 22:27:04 -05:00
15 lines
130 B
Makefile
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
|
|
|