Home | History | Annotate | Download | only in compat
      1 BUILD_PAND := true
      2 ifeq ($(BUILD_PAND),true)
      3 
      4 LOCAL_PATH:= $(call my-dir)
      5 
      6 #
      7 # pand
      8 #
      9 
     10 include $(CLEAR_VARS)
     11 
     12 LOCAL_SRC_FILES:= \
     13 	pand.c bnep.c sdp.c
     14 
     15 LOCAL_CFLAGS:= \
     16 	-DVERSION=\"4.69\" -DSTORAGEDIR=\"/data/misc/bluetoothd\" -DNEED_PPOLL -D__ANDROID__
     17 
     18 LOCAL_C_INCLUDES:=\
     19 	$(LOCAL_PATH)/../lib \
     20 	$(LOCAL_PATH)/../src \
     21 
     22 LOCAL_SHARED_LIBRARIES := \
     23 	libbluetoothd \
     24 	libbluetooth \
     25 	libcutils
     26 
     27 LOCAL_MODULE_TAGS :=
     28 LOCAL_MODULE:=pand
     29 
     30 include $(BUILD_EXECUTABLE)
     31 endif
     32