all: sizeof motivation0 motivation1 

motivation0: motivation0.c
	gcc motivation0.c -o motivation0

motivation1: motivation1.c
	gcc -g motivation1.c -o motivation1 -fno-stack-protector -Werror=vla

scanf: scanf.c
	gcc scanf.c -o scanf

sizeof: sizeof.c
	gcc sizeof.c -o sizeof -Wformat=0

clean:
	rm -f sizeof motivation0 motivation1 scanf 2>/dev/null