renga/Makefile

12 lines
134 B
Makefile

BINARY=renga
CPP=clang
FLAGS=-lbe -std=c++20 -lstdc++
all: build
build:
$(CPP) *.cpp -o $(BINARY) $(FLAGS)
test: build
./renga