tests: Use COMPILE.S for assembing test object
Currently, ASFLAGS is not used, as we call $(AS) directly. Use $(COMPILE.S) instead. Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
This commit is contained in:
parent
2added6a45
commit
1be14f0c9b
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ test.elf: test.$(OBJEXT) $(test_lds)
|
|||
|
||||
test.$(OBJEXT): ASFLAGS = -m64
|
||||
test.$(OBJEXT): $(srcdir)/test.S
|
||||
$(AS) -o $@ $^
|
||||
$(COMPILE.S) -o $@ $^
|
||||
|
||||
$(test_key): Makefile
|
||||
openssl genrsa -out $@ 2048
|
||||
|
|
Loading…
Reference in a new issue