summaryrefslogtreecommitdiff
path: root/frontends/windows/Makefile.tools
blob: 24f0f7fbd5e7f999527e11f8ffa1329535d2041e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- mode: makefile-gmake -*-
##
## windows (win32) target tool setup
##

ifneq ($(HOST),windows)
  # Set Mingw defaults
  GCCSDK_INSTALL_ENV ?= /opt/netsurf/i686-w64-mingw32/env
  GCCSDK_INSTALL_CROSSBIN ?= /opt/netsurf/i686-w64-mingw32/cross/bin

  CC := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*gcc)
  WINDRES := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*windres)

  PKG_CONFIG := PKG_CONFIG_LIBDIR="$(GCCSDK_INSTALL_ENV)/lib/pkgconfig" pkg-config
else
  # Building on Windows
  CC := gcc
  PKG_CONFIG := pkg-config
endif