From 407b2c3e8c92a7b0a25e2c9176d42a6899cab3db Mon Sep 17 00:00:00 2001 From: Christian Wendt Date: Thu, 7 Dec 2017 12:57:12 +0100 Subject: [PATCH] compile with newer gtk, fix parallel builds --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 74e4169..c2571d4 100644 --- a/Makefile +++ b/Makefile @@ -103,7 +103,7 @@ CC += $(shell if [ "`uname -m`" = "sparc64" -o "`uname -m`" = "sun4u" ]; then ec COCOA_LIBS=$(shell if [ "`uname -s`" = "Darwin" ]; then echo "-F/System/Library/Frameworks -framework Cocoa -framework IOKit"; fi) -CFLAGS = -O2 -Wall -Werror $(DEBUG) $(INCLUDES) $(DEFINES) +CFLAGS = -O2 -Wall -Werror $(DEBUG) $(INCLUDES) $(DEFINES) -Wno-error=deprecated-declarations LDFLAGS = $(DEBUG) $(X49GP_LDFLAGS) $(GDB_LDFLAGS) LDLIBS = $(X49GP_LIBS) $(GDB_LIBS) $(COCOA_LIBS) @@ -257,9 +257,9 @@ $(QEMU)/arm-softmmu/%.o: $(QEMU)/%.c +$(QEMUMAKE) BASE_CFLAGS=-DX49GP -C $(QEMU)/arm-softmmu $(shell basename $@) else $(QEMU)/config-host.h: $(QEMUSRC) - ( cd $(QEMU); \ + +( cd $(QEMU); \ ./configure-small --extra-cflags=-DX49GP; \ - +$(QEMUMAKE) -f Makefile-small ) + $(QEMUMAKE) -f Makefile-small ) $(QEMU_OBJS): _dir_qemu