mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
21 lines
414 B
Makefile
21 lines
414 B
Makefile
USE_LIBA = 0
|
|
ION_KEYBOARD_LAYOUT = layout_B2
|
|
EPSILON_GETOPT = 1
|
|
|
|
SFLAGS += -fPIE
|
|
|
|
TARGET ?= $(HOST)
|
|
|
|
BUILD_DIR := $(BUILD_DIR)/$(TARGET)
|
|
|
|
EPSILON_SIMULATOR_HAS_LIBPNG ?= 0
|
|
|
|
include build/platform.simulator.$(TARGET).mak
|
|
|
|
SFLAGS += -DEPSILON_SIMULATOR_HAS_LIBPNG=$(EPSILON_SIMULATOR_HAS_LIBPNG)
|
|
|
|
ifeq ($(EPSILON_SIMULATOR_HAS_LIBPNG),1)
|
|
SFLAGS += `libpng-config --cflags`
|
|
LDFLAGS += `libpng-config --ldflags`
|
|
endif
|