diff --git a/esercitazioni/Makefile b/esercitazioni/Makefile index ae0eb11..1061ae9 100644 --- a/esercitazioni/Makefile +++ b/esercitazioni/Makefile @@ -1,4 +1,9 @@ .SILENT: -all: +build: g++ $(file) -Wall -Werror -pedantic -pedantic-errors + +run: + ./a.out + +all: build run