From b33a1b65e61d5e783b80c31c288e6309398b90ee Mon Sep 17 00:00:00 2001 From: Matt Fleming Date: Fri, 29 Apr 2011 11:20:11 +0100 Subject: [PATCH] hdt: libmenu.a no longer exists Don't link against libmenu.a, it no longer exists as it was removed in commit 74518b8b691c ("elflink: Make ELF the default object format"). This fixes the following build error, make[2]: *** No rule to make target `../cmenu/libmenu/libmenu.a', needed by `hdt.c32'. Stop. Signed-off-by: Matt Fleming --- com32/hdt/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com32/hdt/Makefile b/com32/hdt/Makefile index 65bc1c6..934ad25 100644 --- a/com32/hdt/Makefile +++ b/com32/hdt/Makefile @@ -19,7 +19,7 @@ topdir = ../.. MAKEDIR = $(topdir)/mk include $(MAKEDIR)/elf.mk -LIBS = ../cmenu/libmenu/libmenu.a ../libupload/libcom32upload.a +LIBS = ../libupload/libcom32upload.a CFLAGS += -I$(com32)/cmenu/libmenu -I$(com32) MODULES = hdt.c32 -- 2.7.4