makefile 101 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 all: list list: list.cpp g++ -std=c++2a -g -Wall -pedantic $^ -o $@ .PHONY: clean clean: -rm list