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