renga/Makefile

11 lines
99 B
Makefile

BINARY=renga
CPP=g++
all: build
build:
$(CPP) App.cpp -o $(BINARY) -lbe
test: build
./renga