Android.mk 563 B

12345678910111213141516
  1. LOCAL_PATH:= $(call my-dir)
  2. ifndef WPA_SUPPLICANT_VERSION
  3. WPA_SUPPLICANT_VERSION := VER_0_8_X
  4. endif
  5. ifeq ($(WPA_SUPPLICANT_VERSION),VER_0_8_X)
  6. # The order of the 2 Android.mks does matter!
  7. # TODO: Clean up the Android.mks, reset all the temporary variables at the
  8. # end of each Android.mk, so that one Android.mk doesn't depend on variables
  9. # set up in the other Android.mk.
  10. include $(LOCAL_PATH)/hostapd/Android.mk \
  11. $(LOCAL_PATH)/wpa_supplicant/Android.mk
  12. endif
  13. ifeq ($(WPA_SUPPLICANT_VERSION),VER_2_1_DEVEL)
  14. include $(call all-subdir-makefiles)
  15. endif