diff options
author | Joey Hewitt <joey@joeyhewitt.com> | 2019-09-19 14:34:55 -0600 |
---|---|---|
committer | Joey Hewitt <joey@joeyhewitt.com> | 2019-09-19 14:34:55 -0600 |
commit | 768db3423e938c3291fa39a49044a616f039c245 (patch) | |
tree | b72d43bbb39041c4a7f01c61f4a57b71a4bc0906 /Makefile | |
parent | eb2f3f6010f543bf8e7366dd234680a50a0657cb (diff) | |
download | external_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-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |