all: linked

linked: linked.c
	gcc -g -Wall -Wextra -o linked linked.c

clean:
	rm -f linked
