diff options
Diffstat (limited to 'com32/MCONFIG')
-rw-r--r-- | com32/MCONFIG | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/com32/MCONFIG b/com32/MCONFIG index e02ec67c..f8d9d978 100644 --- a/com32/MCONFIG +++ b/com32/MCONFIG @@ -41,7 +41,8 @@ SFLAGS = $(GCCOPT) -W -Wall -march=i386 \ -nostdinc -iwithprefix include \ -I$(com32)/libutil/include -I$(com32)/include $(GPLINCLUDE) -LDFLAGS = -m elf_i386 -T $(com32)/lib/com32.ld +COM32LD = $(com32)/lib/com32.ld +LDFLAGS = -m elf_i386 -T $(COM32LD) LIBGCC := $(shell $(CC) $(GCCOPT) --print-libgcc) LNXCFLAGS = -I$(com32)/libutil/include -W -Wall -O -g -D_GNU_SOURCE @@ -63,8 +64,8 @@ C_LNXLIBS = $(com32)/libutil/libutil_lnx.a $(CC) $(MAKEDEPS) $(CFLAGS) -c -o $@ $< .PRECIOUS: %.elf -%.elf: %.o $(LIBS) $(C_LIBS) - $(LD) $(LDFLAGS) -o $@ $^ +%.elf: %.o $(LIBS) $(C_LIBS) $(COM32LD) + $(LD) $(LDFLAGS) -o $@ $(filter-out $(COM32LD),$^) .PRECIOUS: %.lo %.lo: %.S |