From ae7d1141012c438c1ec101747038f83c9db33d7a Mon Sep 17 00:00:00 2001 From: John-Mark Bell Date: Fri, 20 Jul 2012 16:30:12 +0100 Subject: Plumbing for Atari cross-compilation --- Makefile | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 22212a4d2..d51936fbb 100644 --- a/Makefile +++ b/Makefile @@ -241,8 +241,25 @@ else ifeq ($(TARGET),cocoa) PKG_CONFIG := PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):/usr/local/lib/pkgconfig" pkg-config else - # Building for GTK, Framebuffer, Atari - PKG_CONFIG := pkg-config + ifeq ($(TARGET),atari) + ifeq ($(HOST),atari) + PKG_CONFIG := pkg-config + else + ifeq ($(HOST),mint) + PKG_CONFIG := pkg-config + else + GCCSDK_INSTALL_ENV ?= /opt/netsurf/m68k-atari-mint/env + GCCSDK_INSTALL_CROSSBIN ?= /opt/netsurf/m68k-atari-mint/cross/bin + + CC := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*gcc) + + PKG_CONFIG := PKG_CONFIG_LIBDIR="$(GCCSDK_INSTALL_ENV)/lib/pkgconfig" pkg-config + endif + endif + else + # Building for GTK, Framebuffer + PKG_CONFIG := pkg-config + endif endif endif endif -- cgit v1.2.3