all: build run
|
|
|
|
build:
|
|
g++ main.cpp -o pokerc -std=c++11
|
|
cd apps && ./build.py
|
|
run:
|
|
chmod +x pokerc
|
|
./pokerc
|
all: build run
|
|
|
|
build:
|
|
g++ main.cpp -o pokerc -std=c++11
|
|
cd apps && ./build.py
|
|
run:
|
|
chmod +x pokerc
|
|
./pokerc
|