renga/Makefile
2025-02-06 22:57:57 +01:00

8 lines
77 B
Makefile

BINARY=renga
CPP=g++
all: build
build:
$(CPP) src/main.cpp -o $(BINARY)