Home | History | Annotate | Download | only in Platforms
      1 # =============================================================================
      2 #
      3 # Makefile pointing to the platform specific makefile.
      4 #
      5 # =============================================================================
      6 
      7 PLATFORMS_PATH := $(LOCAL_PATH)/Daemon/Device/Platforms
      8 
      9 # Always include the Generic code
     10 include $(PLATFORMS_PATH)/Generic/Android.mk
     11 
     12 ifneq ($(filter-out Generic,$(PLATFORM)),)
     13   $(info PLATFORM: $(PLATFORM))
     14   include $(PLATFORMS_PATH)/$(PLATFORM)/Android.mk
     15 endif
     16