diff options
author | hpa <hpa> | 2004-12-08 19:28:05 +0000 |
---|---|---|
committer | hpa <hpa> | 2004-12-08 19:28:05 +0000 |
commit | f50d95261e755826351601373652fd3ec6c6abc0 (patch) | |
tree | 3cdc62f20de8c86a95d24fb24aeee2641a57e7f0 | |
parent | 692199a1e10ef43582c4fec41c1e5f71b7b45187 (diff) | |
download | syslinux-f50d95261e755826351601373652fd3ec6c6abc0.tar.gz |
Be less hostile to building on a mingw-less system.
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | win32/Makefile | 7 |
3 files changed, 11 insertions, 2 deletions
@@ -95,11 +95,11 @@ ISUBDIRS = sample com32 all: $(BTARGET) $(ITARGET) for i in $(BSUBDIRS) $(ISUBDIRS) ; do $(MAKE) -C $$i $@ ; done - ls -l $(BTARGET) $(ITARGET) memdisk/memdisk + -ls -l $(BTARGET) $(ITARGET) memdisk/memdisk installer: $(ITARGET) for i in $(ISUBDIRS); do $(MAKE) -C $$i all ; done - ls -l $(BTARGET) $(ITARGET) + -ls -l $(BTARGET) $(ITARGET) version.gen: version version.pl $(PERL) version.pl version @@ -9,6 +9,8 @@ Changes in 2.12: programs. * MEMDISK: Work around a linker bug by rearranging the code to not use the linker for the 16-bit code. + * SYSLINUX: If we're building on a machine without a Win32 + (mingw) compiler, just skip building syslinux.exe. Changes in 2.11: * ALL: Add an API call to get the configuration file name. diff --git a/win32/Makefile b/win32/Makefile index fd890ec9..3106d6b7 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -36,6 +36,8 @@ CC = mingw-gcc AR = mingw-ar RANLIB = mingw-ranlib endif +CC_IS_GOOD := $(shell $(CC) $(CFLAGS) $(LDFLAGS) -o hello.exe hello.c >/dev/null 2>&1 ; echo $$?) + CFLAGS = -W -Wall -O2 -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 PIC = LDFLAGS = -O2 -s @@ -52,7 +54,12 @@ VERSION = $(shell cat ../version) .c.i: $(CC) $(INCLUDE) $(CFLAGS) -E -o $@ $< +ifeq ($(CC_IS_GOOD),0) all: ../syslinux.exe +else +all: # We don't have a working win32 compiler + rm -f ../syslinux.exe +endif libsyslinux.a: bootsect_bin.o ldlinux_bin.o syslxmod.o rm -f $@ |