8 lines
77 B
Makefile
8 lines
77 B
Makefile
BINARY=renga
|
|
CPP=g++
|
|
|
|
all: build
|
|
|
|
build:
|
|
$(CPP) src/main.cpp -o $(BINARY)
|
|
|