OsmAnd/Osmand-kernel/protobuf/Makefile

16 lines
331 B
Makefile
Raw Normal View History

2012-05-31 21:01:27 +02:00
# Include tools definitions
2012-05-15 20:48:06 +02:00
include ../Makefile.vars
2012-04-30 22:34:50 +02:00
2012-05-31 21:01:27 +02:00
# Include project files
LOCAL_PATH = .
include Common.mk
2012-05-01 00:30:31 +02:00
2012-05-31 21:01:27 +02:00
# Set library name
LIBNAME = $(LIBRARY_PREFIX)proto
LIBTYPE = $(STATICLIB_EXT)
CXXFLAGS += -DGOOGLE_PROTOBUF_NO_RTTI
LDFLAGS += -lpthread
LOCAL_C_INCLUDES += .
2012-04-30 22:34:50 +02:00
2012-05-31 21:01:27 +02:00
# Finally, include generic rules
include ../Makefile.rules