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 /win32 | |
parent | 5cb7ed6d5da9cbeeb328bb62260a242f76884c66 (diff) | |
download | syslinux-61a81029ee38a684199425ab839956204da8b293.tar.gz |
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 'win32')
-rw-r--r-- | win32/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/win32/Makefile b/win32/Makefile index 6130e29a..9bd483a5 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -36,11 +36,12 @@ WINAR = i386-mingw32-ar WINRANLIB = i386-mingw32-ranlib endif -WINCFLAGS = -W -Wall -Wno-sign-compare -Os -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 +WINCFLAGS = -W -Wall -Wno-sign-compare -Os -fomit-frame-pointer \ + -D_FILE_OFFSET_BITS=64 WINPIC = WINLDFLAGS = -Os -s endif -WINCFLAGS += -I. -I.. -I../libfat +WINCFLAGS += -I. -I.. -I../libfat -I../libinstaller WINCC_IS_GOOD := $(shell $(WINCC) $(WINCFLAGS) $(WINLDFLAGS) -o hello.exe hello.c >/dev/null 2>&1 ; echo $$?) @@ -50,7 +51,7 @@ SRCS = syslinux.c ../syslxmod.c ../bootsect_bin.c ../ldlinux_bin.c \ ../mbr_bin.c $(wildcard ../libfat/*.c) OBJS = $(patsubst %.c,%.o,$(notdir $(SRCS))) -VPATH = .:..:../libfat +VPATH = .:..:../libfat:../libinstaller TARGETS = syslinux.exe |