hdt: Adding missing install target
authorErwan Velu <erwan.velu@free.fr>
Mon, 16 Mar 2009 15:20:28 +0000 (16:20 +0100)
committerErwan Velu <erwan.velu@free.fr>
Mon, 16 Mar 2009 15:20:28 +0000 (16:20 +0100)
Impact: Allow the build process to complete properly

The install: target was missing and prevented the global make install to
end properly

com32/hdt/Makefile

index 17e58b3..d6766f3 100644 (file)
@@ -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~