summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 06dffe1..a18c80b 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,12 @@ HEADERS = i9305.h sahara.h
CC = gcc -Wall -Wextra
-modem-boot: boot.o sahara.o
+all: mdm9k-boot mdm9k-efsd
+
+mdm9k-boot: boot.o sahara.o $(HEADERS)
+ $(CC) $^ -o $@
+
+mdm9k-efsd: efsd.o sahara.o $(HEADERS)
$(CC) $^ -o $@
%.o: %.c