From 61a81029ee38a684199425ab839956204da8b293 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Fri, 14 Dec 2007 15:09:11 -0800 Subject: 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. --- mtools/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mtools/Makefile') 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 -- cgit