summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk25
1 files changed, 18 insertions, 7 deletions
diff --git a/Android.mk b/Android.mk
index 65c1703..cb5a0e0 100644
--- a/Android.mk
+++ b/Android.mk
@@ -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)