# # Earth Centered Earth Fixed Navigation Copyright © 2013-2017 Infinite Delta Corp # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . # VPATH=../include:../source CXXFLAGS=-Wall -g -O2 -I../include TRGS=ecef-wgs84_test OBJS=ecef-wgs84.o INC=ecef-vector.h ecef-wgs84.h ecef-quaternion.h all : $(TRGS) ecef-wgs84_test : ecef-wgs84_test.cc $(OBJS) $(INC) $(OBJS) : $(INC) clean: rm -f $(TRGS) $(OBJS) test: all ./ecef-wgs84_test