03597d0f01
This is to trick libreboot into not deleting misc.c when checking out coreboot. Change-Id: I8f0bb5cb3eb5681f99c616ae03de126efab852a9 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/11134 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
18 lines
529 B
Makefile
18 lines
529 B
Makefile
secimageobj :=
|
|
secimageobj += crypto.o
|
|
secimageobj += io.o
|
|
secimageobj += misc.o
|
|
secimageobj += sbi.o
|
|
|
|
LIBS = -lssl -lcrypto -lz
|
|
|
|
additional-dirs += $(objutil)/broadcom/secimage
|
|
|
|
$(objutil)/broadcom/secimage/%.o: $(top)/util/broadcom/secimage/%.c
|
|
printf " HOSTCC $(subst $(objutil)/,,$(@))\n"
|
|
$(HOSTCC) $(HOSTCFLAGS) -c -o $@ $<
|
|
|
|
$(objutil)/broadcom/secimage/secimage: \
|
|
$(addprefix $(objutil)/broadcom/secimage/,$(secimageobj))
|
|
printf " HOSTCC $(subst $(objutil)/,,$(@)) (link)\n"
|
|
$(HOSTCC) -o $@ $^ $(LIBS)
|