
default: main hello

main: main.c addvector.c addvector.h
	gcc -o main addvector.c main.c

hello: hello.c
	gcc -o hello hello.c
