summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNishanth Menon2019-05-18 07:19:33 -0500
committerAndreas Dannenberg2019-06-10 11:41:25 -0500
commit679c426fb5e626d74e597071ad9667484fd494f8 (patch)
tree60016bfa7bfd38e0b6d551094d03c506324d8468
parente806caaaa4c89681d5b8d60c579f97efd880165b (diff)
downloadk3-image-gen-679c426fb5e626d74e597071ad9667484fd494f8.tar.gz
k3-image-gen-679c426fb5e626d74e597071ad9667484fd494f8.tar.xz
k3-image-gen-679c426fb5e626d74e597071ad9667484fd494f8.zip
Makefile: Drop the asm rule
We dont build ASM, so, why have a rule for the same. Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Andreas Dannenberg <dannenberg@ti.com> Reviewed-by: Suman Anna <s-anna@ti.com>
-rw-r--r--Makefile3
1 files changed, 0 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 980a53f83..eeb30a108 100644
--- a/Makefile
+++ b/Makefile
@@ -86,9 +86,6 @@ MKIMAGE ?= mkimage
86.PHONY: all 86.PHONY: all
87all: $(ITB) 87all: $(ITB)
88 88
89%.o: %.S
90 $(CROSS_COMPILE)as -o $@ $<
91
92%.o: %.c 89%.o: %.c
93 $(CROSS_COMPILE)gcc $(CFLAGS) -c -o $@ $< 90 $(CROSS_COMPILE)gcc $(CFLAGS) -c -o $@ $<
94 91