CC  = g++
CXX = g++

CFLAGS   = -Wall
CXXFLAGS = -Wall -std=c++17

executables = stl3 itraits

.PHONY: default
default: $(executables)

.PHONY: clean
clean:
	rm -f a.out core *.o $(executables)

.PHONY: all
all: clean default
