mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-29 17:53:09 +03:00
5db541a6d7
split out HOST TARGET and SUBTARGET generation into separate file. split out target(frontend) specific tool settings into separate files.
17 lines
274 B
Makefile
17 lines
274 B
Makefile
# -*- mode: makefile-gmake -*-
|
|
##
|
|
## tool setup for the gtk target
|
|
##
|
|
|
|
# use native package config
|
|
PKG_CONFIG := pkg-config
|
|
|
|
# gtk target processing
|
|
ifeq ($(SUBTARGET),3)
|
|
override NETSURF_GTK_MAJOR := 3
|
|
endif
|
|
|
|
ifeq ($(SUBTARGET),2)
|
|
override NETSURF_GTK_MAJOR := 2
|
|
endif
|