From: Erwan Velu Date: Mon, 16 Mar 2009 15:20:28 +0000 (+0100) Subject: hdt: Adding missing install target X-Git-Tag: syslinux-3.74-pre12~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e2d0e57b1d32bde9b579d809cda3a2a29573a267;p=profile%2Fivi%2Fsyslinux.git hdt: Adding missing install target Impact: Allow the build process to complete properly The install: target was missing and prevented the global make install to end properly --- diff --git a/com32/hdt/Makefile b/com32/hdt/Makefile index 17e58b3..d6766f3 100644 --- a/com32/hdt/Makefile +++ b/com32/hdt/Makefile @@ -17,6 +17,8 @@ topdir = ../.. include $(topdir)/MCONFIG.embedded +MODULES = hdt.c32 + INCLUDES = -I$(com32)/include -I$(com32)/cmenu/libmenu -I$(com32)/gplinclude LIBGCC := $(shell $(CC) $(GCCOPT) --print-libgcc) @@ -30,7 +32,7 @@ LIBS = $(LIB) $(com32)/cmenu/libmenu/libmenu.a \ LDFLAGS = -m elf_i386 -T $(com32)/lib/com32.ld -all: hdt.c32 $(LIB) +all: $(MODULES) $(LIB) .PRECIOUS: %.o %.o: %.S @@ -68,6 +70,8 @@ $(LIB): tidy dist: rm -f *.o *.a *.lst *.elf +install: all + # Don't specify *.com since mdiskchk.com can't be built using Linux tools clean: tidy rm -f *.o *.c32 *.c~ *.h~ Makefile~