Plumbing for Atari cross-compilation

This commit is contained in:
John-Mark Bell 2012-07-20 16:30:12 +01:00
parent 82fe8989ae
commit ae7d114101
1 changed files with 19 additions and 2 deletions

View File

@ -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