Home | History | Annotate | Download | only in Kernel
      1 # =============================================================================
      2 #
      3 # Module: Kernel Module access
      4 # All paths are relative to application root!
      5 #
      6 # =============================================================================
      7 
      8 
      9 include $(LOCAL_PATH)/Kernel/Platforms/Generic/Android.mk
     10 
     11 # Include platform specific sub-makefiles
     12 ifdef $(PLATFORM)
     13   include $(LOCAL_PATH)/Kernel/Platforms/$(PLATFORM)/Android.mk
     14 endif
     15 
     16 # Add new source files here
     17 LOCAL_SRC_FILES += Kernel/CKMod.cpp
     18 
     19 # Header files for components including this module
     20 LOCAL_C_INCLUDES += $(LOCAL_PATH)/Kernel
     21