mirror of
https://github.com/Gers2017/cpp.js.git
synced 2024-11-25 08:18:41 -06: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
|
||
|
|