CFLAGS = -std=c99 -Wall
LDLIBS = -lm

default: out.txt
	cat out.txt

out.txt: test3v
	./test3v > out.txt

test3v : test3v.o trivector.o

test3v.o trivector.o : trivector.h

clean:
	$(RM) out* *.o test3v *~
