From: Uwe Hermann Date: Tue, 24 Jul 2012 14:35:06 +0000 (+0200) Subject: Makefile.include: Fix build on MinGW/Windows. X-Git-Tag: sigrok-firmware-fx2lafw-0.1.0~2 X-Git-Url: http://sigrok.org/gitweb/?p=sigrok-firmware-fx2lafw.git;a=commitdiff_plain;h=fbc26f625b78af0335178f0f01d99f651c506484 Makefile.include: Fix build on MinGW/Windows. The trailing slash causes issues on MinGW/Windows, apparently. --- diff --git a/Makefile.include b/Makefile.include index c7211d8f..626c5cda 100644 --- a/Makefile.include +++ b/Makefile.include @@ -22,7 +22,7 @@ OBJCOPY ?= objcopy FX2LIBDIR ?= ../../fx2lib BUILDDIR ?= build -SDCCFLAGS += -I../../include/ +SDCCFLAGS += -I../../include $(BUILDDIR)/$(BASENAME).fw: $(BUILDDIR)/$(BASENAME).ihx $(OBJCOPY) -Iihex $< -Obinary $@