mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-23 04:26:50 +03:00
Plumbing for Atari cross-compilation
This commit is contained in:
parent
82fe8989ae
commit
ae7d114101
21
Makefile
21
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
|
||||
|
Loading…
Reference in New Issue
Block a user