Android.mk 491 B

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