summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJoey Hewitt <joey@joeyhewitt.com>2019-09-19 14:34:55 -0600
committerJoey Hewitt <joey@joeyhewitt.com>2019-09-19 14:34:55 -0600
commit768db3423e938c3291fa39a49044a616f039c245 (patch)
treeb72d43bbb39041c4a7f01c61f4a57b71a4bc0906 /Makefile
parenteb2f3f6010f543bf8e7366dd234680a50a0657cb (diff)
downloadexternal_modem-boot-replicant-6.0.tar.gz
external_modem-boot-replicant-6.0.tar.bz2
external_modem-boot-replicant-6.0.zip
split into boot and efsdreplicant-6.0
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