119 lines
3.3 KiB
Makefile
119 lines
3.3 KiB
Makefile
#
|
|
# Tibia
|
|
#
|
|
# Copyright (C) 2023, 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)
|
|
|
|
CC := clang
|
|
CXX := clang++
|
|
|
|
CFLAGS := -Ofast -Wall -Wpedantic -Wextra
|
|
CFLAGS_ALL := -I$(COMMON_DIR)/src -I$(DATA_DIR)/src -I$(PLUGIN_DIR) --target=wasm32 -flto -fvisibility=hidden $(CFLAGS) $(CFLAGS_EXTRA)
|
|
|
|
LDFLAGS_ALL := \
|
|
-Wl,--allow-undefined \
|
|
-Wl,--no-entry \
|
|
-Wl,--lto-O3 \
|
|
-Wl,-strip-all \
|
|
-Wl,--export-table \
|
|
-Wl,--export=malloc \
|
|
-Wl,--export=realloc \
|
|
-Wl,--export=calloc \
|
|
-Wl,--export=free \
|
|
-Wl,--export=memset \
|
|
-Wl,--export=memcpy \
|
|
-Wl,--export=processor_new \
|
|
-Wl,--export=processor_free \
|
|
-Wl,--export=processor_get_x_buf \
|
|
-Wl,--export=processor_get_x \
|
|
-Wl,--export=processor_get_zero_buf \
|
|
-Wl,--export=processor_get_y_buf \
|
|
-Wl,--export=processor_get_out_params \
|
|
-Wl,--export=processor_process \
|
|
-Wl,--export=processor_set_parameter \
|
|
-Wl,-z,stack-size=$$((8*1024*1024)) \
|
|
-nostdlib
|
|
ifeq ($(HAS_MIDI_IN), yes)
|
|
LDFLAGS_ALL := $(LDFLAGS_ALL) -Wl,--export=processor_midi_msg_in
|
|
endif
|
|
LDFLAGS_ALL := $(LDFLAGS_ALL) $(LDFLAGS) $(LDFLAGS_EXTRA)
|
|
|
|
CXXFLAGS := $(CFLAGS)
|
|
CXXFLAGS_ALL := -I$(COMMON_DIR)/src -I$(DATA_DIR)/src -I$(PLUGIN_DIR) --target=wasm32 -flto -fvisibility=hidden $(CXXFLAGS) $(CXXFLAGS_EXTRA)
|
|
|
|
C_SRCS := $(COMMON_DIR)/src/processor.c $(COMMON_DIR)/src/walloc.c $(COMMON_DIR)/src/string.c
|
|
C_OBJS := $(addprefix build/obj/, $(notdir $(C_SRCS:.c=.o)))
|
|
|
|
ifeq ($(CXX_SRCS_EXTRA),)
|
|
CXX_SRCS :=
|
|
CXX_OBJS :=
|
|
else
|
|
CXX_SRCS := $(COMMON_DIR)/src/new.cpp $(CXX_SRCS_EXTRA)
|
|
CXX_OBJS := $(addprefix build/obj/, $(notdir $(CXX_SRCS:.cpp=.o)))
|
|
endif
|
|
|
|
BUNDLE_DATA_PATH := build/web
|
|
BUNDLE_BIN_PATH := build/web
|
|
|
|
ALL := build/web/$(BUNDLE_NAME).wasm build/web/$(BUNDLE_NAME)_processor.js build/web/$(BUNDLE_NAME).js
|
|
|
|
-include $(COMMON_DIR)/vars-extra.mk
|
|
|
|
all: $(ALL)
|
|
|
|
ifeq ($(CXX_OBJS),)
|
|
build/web/$(BUNDLE_NAME).wasm: $(C_OBJS) | build/web
|
|
$(CC) $^ -o $@ $(CFLAGS_ALL) $(LDFLAGS_ALL)
|
|
else
|
|
build/web/$(BUNDLE_NAME).wasm: $(C_OBJS) $(CXX_OBJS) | build/web
|
|
$(CXX) $^ -o $@ $(CFLAGS_ALL) $(CXXFLAGS_ALL) $(LDFLAGS_ALL)
|
|
endif
|
|
|
|
build/web/$(BUNDLE_NAME)_processor.js: $(DATA_DIR)/res/processor.js | build/web
|
|
cp $^ $@
|
|
|
|
build/web/$(BUNDLE_NAME).js: $(DATA_DIR)/res/module.js | build/web
|
|
cp $^ $@
|
|
|
|
build/web build/obj:
|
|
mkdir -p $@
|
|
|
|
clean:
|
|
rm -fr build
|
|
|
|
-include $(COMMON_DIR)/rules-extra.mk
|
|
|
|
.PHONY: all clean
|
|
|
|
.SECONDEXPANSION:
|
|
|
|
PERCENT := %
|
|
|
|
$(C_OBJS): build/obj/%.o: $$(filter $$(PERCENT)/$$(basename $$(notdir $$@)).c,$$(C_SRCS)) | build/obj
|
|
$(CC) $^ -o $@ -c $(CFLAGS_ALL)
|
|
|
|
$(CXX_OBJS): build/obj/%.o: $$(filter $$(PERCENT)/$$(basename $$(notdir $$@)).cpp,$$(CXX_SRCS)) | build/obj
|
|
$(CXX) $^ -o $@ -c $(CXXFLAGS_ALL)
|
|
|
|
-include $(COMMON_DIR)/rules-secondexp-extra.mk
|