diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-12-14 15:09:11 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-12-14 15:09:11 -0800 |
commit | 61a81029ee38a684199425ab839956204da8b293 (patch) | |
tree | 0dd61de1ec25d649136b1844c2fba5a92c9e0659 /mtools | |
parent | 5cb7ed6d5da9cbeeb328bb62260a242f76884c66 (diff) | |
download | syslinux-61a81029ee38a684199425ab839956204da8b293.tar.gz syslinux-61a81029ee38a684199425ab839956204da8b293.tar.xz syslinux-61a81029ee38a684199425ab839956204da8b293.zip |
Create libinstaller; actually implement boot-once for extlinux
--once now supported for extlinux; some infrastructure for syslinux
there as well, need implementation in all the various installers,
however.
Diffstat (limited to 'mtools')
-rw-r--r-- | mtools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mtools/Makefile b/mtools/Makefile index 16d63a69..4b52cb67 100644 --- a/mtools/Makefile +++ b/mtools/Makefile @@ -8,7 +8,7 @@ LDHASH := $(call gcc_ok,-Wl$(comma)--hash-style=both,) CC = gcc OPTFLAGS = -g -Os -INCLUDES = -I. -I.. -I../libfat +INCLUDES = -I. -I.. -I../libfat -I../libinstaller CFLAGS = -W -Wall -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES) LDFLAGS = $(LDHASH) -s @@ -17,7 +17,7 @@ OBJS = $(patsubst %.c,%.o,$(notdir $(SRCS))) .SUFFIXES: .c .o .i .s .S -VPATH = .:..:../libfat +VPATH = .:..:../libfat:../libinstaller all: installer |