]> git.sesse.net Git - tcxmerge/blob - Makefile
Fix a problem with the normals.
[tcxmerge] / Makefile
1 CXX=g++
2 CXXFLAGS=-O2 -ffast-math -g -Wno-write-strings $(shell pkg-config eigen3 --cflags)
3 LDFLAGS=-lceres_shared
4
5 OBJS=opt.o LatLong-UTMconversion.o
6
7 opt: $(OBJS)
8         $(CXX) -o $@ $(OBJS) $(LDFLAGS)
9