diff options
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 25 |
1 files changed, 18 insertions, 7 deletions
@@ -1,5 +1,6 @@ # # Copyright (C) 2017 Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> +# Copyright (C) 2019 Joey Hewitt <joey@joeyhewitt.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,15 +19,25 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) + LOCAL_SRC_FILES := \ + boot.c \ + sahara.c -LOCAL_SRC_FILES := \ - boot.c \ - sahara.c + LOCAL_C_INCLUDES := \ + $(LOCAL_PATH) -LOCAL_C_INCLUDES := \ - $(LOCAL_PATH) + LOCAL_MODULE := mdm9k-boot + LOCAL_MODULE_TAGS := optional +include $(BUILD_EXECUTABLE) + +include $(CLEAR_VARS) + LOCAL_SRC_FILES := \ + efsd.c \ + sahara.c -LOCAL_MODULE := modem-boot -LOCAL_MODULE_TAGS := optional + LOCAL_C_INCLUDES := \ + $(LOCAL_PATH) + LOCAL_MODULE := mdm9k-efsd + LOCAL_MODULE_TAGS := optional include $(BUILD_EXECUTABLE) |