mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-04-21 21:52:04 +02:00
335 lines
10 KiB
Makefile
335 lines
10 KiB
Makefile
TARGETFLAGS := $(TARGETFLAGS) -mmacosx-version-min=$(MINIMUM_REQUIRED)
|
|
DEPLOYMENT_TARGET_ENV := MACOSX_DEPLOYMENT_TARGET=$(MINIMUM_REQUIRED)
|
|
BUILD_PREFIX := ${PWD}/build-macosx-$(ARCH)
|
|
LIBDIR := $(BUILD_PREFIX)/lib
|
|
INCLUDEDIR := $(BUILD_PREFIX)/include
|
|
DOWNLOADS := ${PWD}/downloads/$(HOST)
|
|
NPROC := $(shell sysctl -n hw.ncpu)
|
|
CFLAGS := -I$(INCLUDEDIR) $(TARGETFLAGS) $(DEFINES) -O3
|
|
LDFLAGS := -L$(LIBDIR)
|
|
CC := clang -arch $(ARCH)
|
|
PKG_CONFIG_LIBDIR := $(BUILD_PREFIX)/lib/pkgconfig
|
|
GIT := git
|
|
CLONE := $(GIT) clone -q
|
|
GITHUB := https://github.com
|
|
|
|
# need to set the build variable because Ruby is picky
|
|
ifeq "$(strip $(shell uname -m))" "arm64"
|
|
RBUILD := aarch64-apple-darwin
|
|
else
|
|
RBUILD := x86_64-apple-darwin
|
|
endif
|
|
|
|
|
|
CONFIGURE_ENV := \
|
|
$(DEPLOYMENT_TARGET_ENV) \
|
|
PKG_CONFIG_LIBDIR=$(PKG_CONFIG_LIBDIR) \
|
|
CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
|
|
|
|
CONFIGURE_ARGS := \
|
|
--prefix="$(BUILD_PREFIX)" \
|
|
--host=$(HOST)
|
|
|
|
CMAKE_ARGS := \
|
|
-DCMAKE_INSTALL_PREFIX="$(BUILD_PREFIX)" \
|
|
-DCMAKE_PREFIX_PATH="$(BUILD_PREFIX)" \
|
|
-DCMAKE_OSX_ARCHITECTURES=$(ARCH) \
|
|
-DCMAKE_OSX_DEPLOYMENT_TARGET=$(MINIMUM_REQUIRED) \
|
|
-DCMAKE_C_FLAGS="$(CFLAGS)" \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
|
|
|
|
# Ruby won't think it's cross-compiling unless
|
|
# the BUILD variable is set now for whatever reason,
|
|
# but
|
|
RUBY_CONFIGURE_ARGS := \
|
|
--enable-install-static-library \
|
|
--enable-shared \
|
|
--with-out-ext=fiddle,gdbm,win32ole,win32 \
|
|
--with-static-linked-ext \
|
|
--disable-rubygems \
|
|
--disable-install-doc \
|
|
--build=$(RBUILD) \
|
|
${EXTRA_RUBY_CONFIG_ARGS}
|
|
|
|
CONFIGURE := $(CONFIGURE_ENV) ./configure $(CONFIGURE_ARGS)
|
|
AUTOGEN := $(CONFIGURE_ENV) ./autogen.sh $(CONFIGURE_ARGS)
|
|
CMAKE := $(CONFIGURE_ENV) cmake .. $(CMAKE_ARGS)
|
|
|
|
default:
|
|
|
|
# Theora
|
|
libtheora: init_dirs libvorbis libogg $(LIBDIR)/libtheora.a
|
|
|
|
$(LIBDIR)/libtheora.a: $(LIBDIR)/libogg.a $(DOWNLOADS)/theora/Makefile
|
|
cd $(DOWNLOADS)/theora; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/theora/Makefile: $(DOWNLOADS)/theora/configure
|
|
cd $(DOWNLOADS)/theora; \
|
|
$(CONFIGURE) --with-ogg=$(BUILD_PREFIX) --enable-shared=false --enable-static=true --disable-examples
|
|
|
|
$(DOWNLOADS)/theora/configure: $(DOWNLOADS)/theora/autogen.sh
|
|
cd $(DOWNLOADS)/theora; \
|
|
./autogen.sh
|
|
|
|
$(DOWNLOADS)/theora/autogen.sh:
|
|
$(CLONE) $(GITHUB)/xiph/theora $(DOWNLOADS)/theora
|
|
|
|
# Vorbis
|
|
libvorbis: init_dirs libogg $(LIBDIR)/libvorbis.a
|
|
|
|
$(LIBDIR)/libvorbis.a: $(LIBDIR)/libogg.a $(DOWNLOADS)/vorbis/Makefile
|
|
cd $(DOWNLOADS)/vorbis; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/vorbis/Makefile: $(DOWNLOADS)/vorbis/configure
|
|
cd $(DOWNLOADS)/vorbis; \
|
|
$(CONFIGURE) --with-ogg=$(BUILD_PREFIX) --enable-shared=false --enable-static=true
|
|
|
|
$(DOWNLOADS)/vorbis/configure: $(DOWNLOADS)/vorbis/autogen.sh
|
|
cd $(DOWNLOADS)/vorbis; \
|
|
./autogen.sh
|
|
|
|
$(DOWNLOADS)/vorbis/autogen.sh:
|
|
$(CLONE) $(GITHUB)/mkxp-z/vorbis $(DOWNLOADS)/vorbis
|
|
|
|
|
|
# Ogg, dependency of Vorbis
|
|
libogg: init_dirs $(LIBDIR)/libogg.a
|
|
|
|
$(LIBDIR)/libogg.a: $(DOWNLOADS)/ogg/Makefile
|
|
cd $(DOWNLOADS)/ogg; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/ogg/Makefile: $(DOWNLOADS)/ogg/configure
|
|
cd $(DOWNLOADS)/ogg; \
|
|
$(CONFIGURE) --enable-static=true --enable-shared=false
|
|
|
|
$(DOWNLOADS)/ogg/configure: $(DOWNLOADS)/ogg/autogen.sh
|
|
cd $(DOWNLOADS)/ogg; ./autogen.sh
|
|
|
|
$(DOWNLOADS)/ogg/autogen.sh:
|
|
$(CLONE) $(GITHUB)/mkxp-z/ogg $(DOWNLOADS)/ogg
|
|
|
|
# uchardet
|
|
uchardet: init_dirs $(LIBDIR)/libuchardet.a
|
|
|
|
$(LIBDIR)/libuchardet.a: $(DOWNLOADS)/uchardet/cmakebuild/Makefile
|
|
cd $(DOWNLOADS)/uchardet/cmakebuild; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/uchardet/cmakebuild/Makefile: $(DOWNLOADS)/uchardet/CMakeLists.txt
|
|
cd $(DOWNLOADS)/uchardet; \
|
|
mkdir cmakebuild; cd cmakebuild; \
|
|
$(CMAKE) -DBUILD_SHARED_LIBS=no
|
|
|
|
$(DOWNLOADS)/uchardet/CMakeLists.txt:
|
|
$(CLONE) $(GITHUB)/mkxp-z/uchardet $(DOWNLOADS)/uchardet
|
|
|
|
|
|
# Pixman
|
|
pixman: init_dirs libpng $(LIBDIR)/libpixman-1.a
|
|
|
|
$(LIBDIR)/libpixman-1.a: $(DOWNLOADS)/pixman/Makefile
|
|
cd $(DOWNLOADS)/pixman
|
|
make -C $(DOWNLOADS)/pixman -j$(NPROC)
|
|
make -C $(DOWNLOADS)/pixman install
|
|
|
|
$(DOWNLOADS)/pixman/Makefile: $(DOWNLOADS)/pixman/autogen.sh
|
|
cd $(DOWNLOADS)/pixman; \
|
|
$(AUTOGEN) --enable-static=yes --enable-shared=no \
|
|
--disable-arm-a64-neon
|
|
|
|
$(DOWNLOADS)/pixman/autogen.sh:
|
|
$(CLONE) $(GITHUB)/mkxp-z/pixman $(DOWNLOADS)/pixman
|
|
|
|
|
|
# PhysFS
|
|
|
|
physfs: init_dirs $(LIBDIR)/libphysfs.a
|
|
|
|
$(LIBDIR)/libphysfs.a: $(DOWNLOADS)/physfs/cmakebuild/Makefile
|
|
cd $(DOWNLOADS)/physfs/cmakebuild; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/physfs/cmakebuild/Makefile: $(DOWNLOADS)/physfs/CMakeLists.txt
|
|
cd $(DOWNLOADS)/physfs; \
|
|
mkdir cmakebuild; cd cmakebuild; \
|
|
$(CMAKE) -DPHYSFS_BUILD_STATIC=true -DPHYSFS_BUILD_SHARED=false
|
|
|
|
$(DOWNLOADS)/physfs/CMakeLists.txt:
|
|
$(CLONE) $(GITHUB)/mkxp-z/physfs -b release-3.2.0 $(DOWNLOADS)/physfs
|
|
|
|
# libpng
|
|
libpng: init_dirs $(LIBDIR)/libpng.a
|
|
|
|
$(LIBDIR)/libpng.a: $(DOWNLOADS)/libpng/Makefile
|
|
cd $(DOWNLOADS)/libpng; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/libpng/Makefile: $(DOWNLOADS)/libpng/configure
|
|
cd $(DOWNLOADS)/libpng; \
|
|
$(CONFIGURE) \
|
|
--enable-shared=no --enable-static=yes
|
|
|
|
$(DOWNLOADS)/libpng/configure:
|
|
$(CLONE) $(GITHUB)/mkxp-z/libpng $(DOWNLOADS)/libpng
|
|
|
|
# SDL2
|
|
sdl2: init_dirs $(LIBDIR)/libSDL2.a
|
|
|
|
$(LIBDIR)/libSDL2.a: $(DOWNLOADS)/sdl2/cmakebuild/Makefile
|
|
cd $(DOWNLOADS)/sdl2/cmakebuild; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/sdl2/cmakebuild/Makefile: $(DOWNLOADS)/sdl2/CMakeLists.txt
|
|
cd $(DOWNLOADS)/sdl2; \
|
|
mkdir cmakebuild; cd cmakebuild; \
|
|
$(CMAKE) -DBUILD_SHARED_LIBS=no
|
|
|
|
$(DOWNLOADS)/sdl2/CMakeLists.txt:
|
|
$(CLONE) $(GITHUB)/mkxp-z/SDL $(DOWNLOADS)/sdl2 -b mkxp-z-2.26
|
|
|
|
# SDL_image
|
|
sdl2image: init_dirs sdl2 $(LIBDIR)/libSDL2_image.a
|
|
|
|
$(LIBDIR)/libSDL2_image.a: $(DOWNLOADS)/sdl2_image/cmakebuild/Makefile
|
|
cd $(DOWNLOADS)/sdl2_image/cmakebuild; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/sdl2_image/cmakebuild/Makefile: $(DOWNLOADS)/sdl2_image/CMakeLists.txt
|
|
cd $(DOWNLOADS)/sdl2_image; mkdir -p cmakebuild; cd cmakebuild; \
|
|
$(CMAKE) \
|
|
-DBUILD_SHARED_LIBS=no \
|
|
-DSDL2IMAGE_JPG_SAVE=yes \
|
|
-DSDL2IMAGE_PNG_SAVE=yes \
|
|
-DSDL2IMAGE_PNG_SHARED=no \
|
|
-DSDL2IMAGE_JPG_SHARED=no \
|
|
-DSDL2IMAGE_BACKEND_IMAGEIO=no
|
|
|
|
|
|
$(DOWNLOADS)/sdl2_image/CMakeLists.txt:
|
|
$(CLONE) $(GITHUB)/mkxp-z/SDL_image $(DOWNLOADS)/sdl2_image -b mkxp-z
|
|
|
|
|
|
# SDL_sound
|
|
sdlsound: init_dirs sdl2 libogg libvorbis $(LIBDIR)/libSDL2_sound.a
|
|
|
|
$(LIBDIR)/libSDL2_sound.a: $(DOWNLOADS)/sdl_sound/cmakebuild/Makefile
|
|
cd $(DOWNLOADS)/sdl_sound/cmakebuild; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/sdl_sound/cmakebuild/Makefile: $(DOWNLOADS)/sdl_sound/CMakeLists.txt
|
|
cd $(DOWNLOADS)/sdl_sound; mkdir -p cmakebuild; cd cmakebuild; \
|
|
$(CMAKE) \
|
|
-DSDLSOUND_BUILD_SHARED=false \
|
|
-DSDLSOUND_BUILD_TEST=false \
|
|
-DSDLSOUND_DECODER_COREAUDIO=false
|
|
|
|
$(DOWNLOADS)/sdl_sound/CMakeLists.txt:
|
|
$(CLONE) $(GITHUB)/mkxp-z/SDL_sound $(DOWNLOADS)/sdl_sound -b git
|
|
|
|
|
|
# SDL2 (ttf)
|
|
sdl2ttf: init_dirs sdl2 freetype $(LIBDIR)/libSDL2_ttf.a
|
|
|
|
$(LIBDIR)/libSDL2_ttf.a: $(DOWNLOADS)/sdl2_ttf/Makefile
|
|
cd $(DOWNLOADS)/sdl2_ttf; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/sdl2_ttf/Makefile: $(DOWNLOADS)/sdl2_ttf/configure
|
|
cd $(DOWNLOADS)/sdl2_ttf; \
|
|
$(CONFIGURE) --enable-static=true --enable-shared=false $(SDL2_TTF_FLAGS)
|
|
|
|
$(DOWNLOADS)/sdl2_ttf/configure: $(DOWNLOADS)/sdl2_ttf/autogen.sh
|
|
cd $(DOWNLOADS)/sdl2_ttf; ./autogen.sh
|
|
|
|
$(DOWNLOADS)/sdl2_ttf/autogen.sh:
|
|
$(CLONE) $(GITHUB)/mkxp-z/SDL_ttf $(DOWNLOADS)/sdl2_ttf -b mkxp-z
|
|
|
|
# Freetype (dependency of SDL2_ttf)
|
|
freetype: init_dirs $(LIBDIR)/libfreetype.a
|
|
|
|
$(LIBDIR)/libfreetype.a: $(DOWNLOADS)/freetype/Makefile
|
|
cd $(DOWNLOADS)/freetype; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/freetype/Makefile: $(DOWNLOADS)/freetype/configure
|
|
cd $(DOWNLOADS)/freetype; \
|
|
$(CONFIGURE) --enable-static=true --enable-shared=false
|
|
|
|
$(DOWNLOADS)/freetype/configure: $(DOWNLOADS)/freetype/autogen.sh
|
|
cd $(DOWNLOADS)/freetype; ./autogen.sh
|
|
|
|
$(DOWNLOADS)/freetype/autogen.sh:
|
|
$(CLONE) $(GITHUB)/mkxp-z/freetype2 $(DOWNLOADS)/freetype
|
|
|
|
# OpenAL
|
|
openal: init_dirs libogg $(LIBDIR)/libopenal.a
|
|
|
|
$(LIBDIR)/libopenal.a: $(DOWNLOADS)/openal/cmakebuild/Makefile
|
|
cd $(DOWNLOADS)/openal/cmakebuild; \
|
|
make -j$(NPROC); make install
|
|
|
|
$(DOWNLOADS)/openal/cmakebuild/Makefile: $(DOWNLOADS)/openal/CMakeLists.txt
|
|
cd $(DOWNLOADS)/openal; mkdir cmakebuild; cd cmakebuild; \
|
|
$(CMAKE) -DLIBTYPE=STATIC -DALSOFT_EXAMPLES=no -DALSOFT_UTILS=no $(OPENAL_FLAGS)
|
|
|
|
$(DOWNLOADS)/openal/CMakeLists.txt:
|
|
$(CLONE) $(GITHUB)/mkxp-z/openal-soft $(DOWNLOADS)/openal
|
|
|
|
# OpenSSL
|
|
openssl: init_dirs $(LIBDIR)/libssl.a
|
|
$(LIBDIR)/libssl.a: $(DOWNLOADS)/openssl/Makefile
|
|
cd $(DOWNLOADS)/openssl; \
|
|
$(CONFIGURE_ENV) make -j$(NPROC); make install_sw
|
|
|
|
$(DOWNLOADS)/openssl/Makefile: $(DOWNLOADS)/openssl/Configure
|
|
cd $(DOWNLOADS)/openssl; \
|
|
$(CONFIGURE_ENV) ./Configure $(OPENSSL_FLAGS) \
|
|
no-shared \
|
|
--prefix="$(BUILD_PREFIX)" \
|
|
--openssldir="$(BUILD_PREFIX)"
|
|
|
|
$(DOWNLOADS)/openssl/Configure:
|
|
$(CLONE) $(GITHUB)/openssl/openssl $(DOWNLOADS)/openssl; \
|
|
cd $(DOWNLOADS)/openssl --single-branch --branch OpenSSL_1_1_1i --depth 1
|
|
|
|
# Standard ruby
|
|
ruby: init_dirs openssl $(LIBDIR)/libruby.3.1.dylib
|
|
|
|
$(LIBDIR)/libruby.3.1.dylib: $(DOWNLOADS)/ruby/Makefile
|
|
cd $(DOWNLOADS)/ruby; \
|
|
$(CONFIGURE_ENV) make -j$(NPROC); $(CONFIGURE_ENV) make install
|
|
install_name_tool -id @rpath/libruby.3.1.dylib $(LIBDIR)/libruby.3.1.dylib
|
|
|
|
$(DOWNLOADS)/ruby/Makefile: $(DOWNLOADS)/ruby/configure
|
|
cd $(DOWNLOADS)/ruby; \
|
|
export $(CONFIGURE_ENV); \
|
|
export CFLAGS="-flto=full -DRUBY_FUNCTION_NAME_STRING=__func__ $$CFLAGS"; \
|
|
export LDFLAGS="-flto=full $$LDFLAGS"; \
|
|
./configure $(CONFIGURE_ARGS) $(RUBY_CONFIGURE_ARGS) $(RUBY_FLAGS)
|
|
|
|
$(DOWNLOADS)/ruby/configure: $(DOWNLOADS)/ruby/configure.ac
|
|
cd $(DOWNLOADS)/ruby; autoreconf -i
|
|
|
|
$(DOWNLOADS)/ruby/configure.ac:
|
|
$(CLONE) $(GITHUB)/mkxp-z/ruby $(DOWNLOADS)/ruby --single-branch -b mkxp-z-3.1.3 --depth 1;
|
|
|
|
# ====
|
|
init_dirs:
|
|
@mkdir -p $(LIBDIR) $(INCLUDEDIR)
|
|
|
|
clean: clean-compiled
|
|
|
|
powerwash: clean-compiled clean-downloads
|
|
|
|
clean-downloads:
|
|
-rm -rf downloads/$(HOST)
|
|
|
|
clean-compiled:
|
|
-rm -rf build-macosx-$(ARCH)
|
|
|
|
deps-core: libtheora libvorbis pixman libpng physfs uchardet sdl2 sdl2image sdlsound sdl2ttf openal openssl
|
|
everything: deps-core ruby
|