rcp/test/Makefile

14 lines
213 B
Makefile

INCLUDE := ../include
.PHONY: all
all: build/tests
build/tests
valgrind build/tests
build/tests: tests.cpp $(INCLUDE)/rcp.h
$(CC) -std=c++20 -g -Wall -I$(INCLUDE) -o $@ $<
.PHONY: clean
clean:
rm -rf build