mirror of
https://github.com/lucaspalomodevelop/autom.git
synced 2026-03-12 23:27:21 +00:00
6 lines
138 B
Makefile
6 lines
138 B
Makefile
all:
|
|
mkdir -p bin
|
|
g++ -c ./src/main.cpp
|
|
g++ -c ./src/command.cpp
|
|
g++ -std=c++11 main.o command.o -o ./bin/autom
|
|
./bin/autom help
|