cc=clang++-20 -std=c++20 -Wno-c++11-narrowing

files=Graph.cpp Window.cpp GUI.cpp  main.cpp 
flags=-lfltk_images -lfltk -lX11 -stdlib=libc++ 

test: $(files) 
	$(cc)  $(flags) $^ -o $@

clean:
	rm -f *.o test

run:
	./test

.PHONY: clean run

