11 lines
196 B
Makefile
11 lines
196 B
Makefile
setup:
|
|
mkdir build
|
|
sheet00:
|
|
g++ src/sheet00.cpp -o ./build/sheet00
|
|
chmod +x build/sheet00
|
|
build/sheet00
|
|
sheet01:
|
|
g++ src/sheet01.cpp -o ./build/sheet01
|
|
chmod +x build/sheet01
|
|
build/sheet01
|