makefile 318 Bytes
CFLAGS=-ggdb -Wall -pedantic -D_REENTRANT -DASIO_STANDALONE -DASIO_HAS_CO_AWAIT -DASIO_HAS_STD_COROUTINE -I asio-1.18.1/include/


%: %.cpp
	g++-10 -std=c++20 -fcoroutines $(CFLAGS) $< -o $@ -lpthread

EXECS = 00-timer1 01-timer2 02-timer3 03-timer4 04-timer5

all: $(EXECS)

.PHONY: clean all

clean:
	rm -f $(EXECS)