CC=gcc CFLAGS=-std=c11 -Wall -Wpedantic -g all: argv argv: argv.c $(CC) $(CFLAGS) argv.c -o argv clean: rm -f *~ *.o argv