Skip to content

Commit 95c5527

Browse files
committed
Add make.fls
1 parent 7a7a83c commit 95c5527

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

make.fls

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/fla --b
2+
3+
() -> main {
4+
executepp("Build", "c++ -I. test.cpp -o test")
5+
executepp("Run", "./test")
6+
} main;

make.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
# Shebang line
33

4-
c++ -I. test.cpp -o test && ./test
4+
c++ -I. test.cpp -o test && ./test

0 commit comments

Comments
 (0)