fix: don't compile swp files & feat: add connection middleman

This commit is contained in:
hexlocation 2025-02-09 11:51:44 +00:00
parent 52a92b1065
commit 258d520ede
6 changed files with 58 additions and 14 deletions

View file

@ -5,7 +5,7 @@ FLAGS=-lbe -std=c++20 -lstdc++
all: build
build:
$(CPP) $(shell find ./src | grep cpp) -o $(BINARY) $(FLAGS)
$(CPP) $(shell find ./src | grep cpp | grep -v swp) -o $(BINARY) $(FLAGS)
test: build
./renga