58 lines
1.4 KiB
Makefile
58 lines
1.4 KiB
Makefile
#
|
|
# Tibia
|
|
#
|
|
# Copyright (C) 2024 Orastron Srl unipersonale
|
|
#
|
|
# Tibia is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, version 3 of the License.
|
|
#
|
|
# Tibia is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Tibia. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# File author: Stefano D'Angelo
|
|
#
|
|
|
|
include vars.mk
|
|
|
|
COMMON_DIR := $(or $(COMMON_DIR),.)
|
|
DATA_DIR := $(or $(DATA_DIR),.)
|
|
PLUGIN_DIR := $(or $(PLUGIN_DIR),src)
|
|
|
|
SOURCES := \
|
|
${DATA_DIR}/src/data.h \
|
|
${DATA_DIR}/src/index.html \
|
|
${COMMON_DIR}/src/app.swift \
|
|
${COMMON_DIR}/src/native.mm \
|
|
${COMMON_DIR}/src/app-Bridging-Header.h \
|
|
${PLUGIN_DIR}/plugin.h \
|
|
${C_SRCS_EXTRA} \
|
|
${CXX_SRCS_EXTRA} \
|
|
${SRCS_EXTRA}
|
|
SOURCES_OUT = $(addprefix build/gen/src/, $(notdir $(SOURCES)))
|
|
|
|
all: build/gen/${BUNDLE_NAME}.xcodeproj
|
|
|
|
build/gen/${BUNDLE_NAME}.xcodeproj: ${SOURCES_OUT}
|
|
xcodegen generate --spec project.yml -r build/gen -p build/gen
|
|
|
|
build/gen/src:
|
|
mkdir -p $@
|
|
|
|
clean:
|
|
rm -fr build
|
|
|
|
.PHONY: all clean
|
|
|
|
.SECONDEXPANSION:
|
|
|
|
PERCENT := %
|
|
|
|
$(SOURCES_OUT): build/gen/src/%: $$(filter $$(PERCENT)/%,$$(SOURCES)) | build/gen/src
|
|
cp $^ $@
|