9 lines
78 B
Makefile
9 lines
78 B
Makefile
BINARY=renga
|
|
CPP=g++
|
|
|
|
all: build
|
|
|
|
build:
|
|
$(CPP) App.cpp -o $(BINARY) -lbe
|
|
|
|
|