diff --git a/3rdparty/Makefile b/3rdparty/Makefile index 771f8a7e..d11a1db3 100644 --- a/3rdparty/Makefile +++ b/3rdparty/Makefile @@ -121,14 +121,14 @@ LUAPATCHES = lua-atari-log2.patch \ lua-atari-inttype.patch LATESTLUAVER = $(shell curl -s -S https://www.lua.org/download.html | grep -A1 "current release is" | tail -n1 | sed 's/.*lua-\([0-9.]*\)\.tar.*/\1/' ) # https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-0.6.1.tar.gz -RECOILVER=4.3.2 +RECOILVER=5.0.0 LATESTRECOILVER = $(shell curl -s -S -I https://sourceforge.net/projects/recoil/files/latest/download|grep -i "^location:"|sed 's:.*/\([0-9.]*\)/.*:\1:' ) RECOIL=recoil-$(RECOILVER) RECOILARCH=$(RECOIL).tar.gz # https://downloads.sourceforge.net/project/recoil/recoil/4.3.0/recoil-4.3.0.tar.gz RECOILURL=https://downloads.sourceforge.net/project/recoil/recoil/$(RECOILVER)/$(RECOILARCH) RECOILURLALT=http://nanard.free.fr/grafx2/$(RECOILARCH) -RECOILSHA256=b9691db9e0d2b6cec23c9dec8628ecf6870f1e9d34ce95513fb4a671d781b19c +RECOILSHA256=caa60b380c7e0a762d62459bc9ca31d16b22b0f85c972e6315e3744ae1f2ffb5 #https://github.com/redcode/6502/releases/download/v0.1/6502-v0.1.tar.xz REDCODE6502=6502-v0.1 REDCODE6502ARCH=6502-v0.1.tar.xz diff --git a/src/Makefile b/src/Makefile index 164439e0..1c185592 100644 --- a/src/Makefile +++ b/src/Makefile @@ -71,7 +71,7 @@ endif CFLAGS_CACHE = $(OBJDIR)/.cflags.cache - RECOILVER = 4.3.2 + RECOILVER = 5.0.0 # Video / input API used API ?= sdl @@ -1158,6 +1158,8 @@ $(OBJDIR)/loadrecoil.o: recoil.c recoil.h ../3rdparty/recoil-$(RECOILVER)/recoil.c: if [ -d ../3rdparty ] ; then $(MAKE) -C ../3rdparty recoil ; fi + +$(OBJDIR)/recoil.o: CFLAGS += -Wno-declaration-after-statement -Wno-unused-parameter endif 6502.h: 6502.c