1
2
3include ../../../GDALmake.opt
4
5OBJ	=	ogrmongodbv3driver.o
6
7# -foperator-names needed for mongocxx headers...
8CXXFLAGS := $(subst -fno-operator-names,,${CXXFLAGS})
9
10CPPFLAGS	:=	-I../generic $(MONGOCXXV3_CFLAGS) $(CPPFLAGS)
11
12default:	$(O_OBJ:.o=.$(OBJ_EXT))
13
14clean:
15	rm -f *.o $(O_OBJ)
16