HEADERS = TwoViewReconstruction.h

OBJS =	3d_reconstruction.o focal_length_computation.o motion_parameter_computation.o

TARGET  = libTwoViewReconstruction.a

include ../Makefile.in

$(TARGET): $(OBJS)
	ar rv $(TARGET) $(OBJS)

clean:
	rm -f *.o *~ $(OBJS) $(TARGET)

3d_reconstruction.o: 3d_reconstruction.cc $(HEADERS)
focal_length_computation.o: focal_length_computation.cc $(HEADERS)
motion_parameter_computation.o: motion_parameter_computation.cc $(HEADERS)
