Add special rules for MinGW

Some (all?) variants of MinGW do not have a working 'fmt'.
This is not indispensable to the rule working, it makes it just look good.

The sed -e 's/\\\\...' rule appears necessary when executing the
command within 'make'. This is definitely a bug. If I execute the
command within the Windows CMD, I need the extra \\. If I execute the
command within bash or sh, I do not.
This commit is contained in:
Christophe de Dinechin 2017-04-05 07:42:29 +02:00
parent 4efdc5c604
commit dcfb55cedc
2 changed files with 6 additions and 0 deletions

View File

@ -28,6 +28,11 @@ OS_NAME_mingw=windows
include $(BUILD)config.gnu.mk
# We need a special treatment of this on Windows
POSTPROCESS_DEPENDENCY= \
( sed -e 's/.*://' -e 's/\\$$//' < $@ | \
sed -e 's/^ *//' -e 's/$$/:/' -e 's/\\\\:$$/:/' >> $@ )
# Windows overrides for extensions
EXE_EXT= .exe
LIB_EXT= .lib

View File

@ -320,6 +320,7 @@ OBJ_DEPS=$(OBJDIR_DEPS) $(MAKEFILE_DEPS) | hello prebuild
# http://scottmcpeak.com/autodepend/autodepend.html
POSTPROCESS_DEPENDENCY= \
( sed -e 's/.*://' -e 's/\\$$//' < $@ | \
fmt -1 | \
sed -e 's/^ *//' -e 's/$$/:/' >> $@ )
$(OBJDIR)/%.c$(OBJ_EXT).d: %.c $(OBJ_DEPS)