
I'm taking a page from Dolphin's book, and including copies of each dependency's source code. This combines the ease of use of including pre-built libraries instead of needing to navigate a package manager - as is (or was) the case for MSVC - with the portability of using packages. Granted, this method's more of a jack of all trades, master of none, since it's *less* user-friendly than prebuilt packages (compilation times), and you don't get the per-distro compatibility fixes you'd get from a package manager. You can still use system libs if you want. In fact, it's still the default behaviour: compiling the libs manually is just a fallback. I'll add an option to force-enable this soon, however, since it's a nicer way to produce static MSYS2 builds than the hackish nightmare that I was using before. Not to mention, having my own copy of the sources means I can provide my own fixes and tweaks your package manager may not. For example, I can combine MSYS2's FreeType subpixel rendering with vcpkg's fix for SDL2 exporting its symbols in static builds.
80 lines
2.4 KiB
Text
80 lines
2.4 KiB
Text
# Makefile to build the pandora SDL library
|
|
WIZSDK = /mythtv/media/devel/toolchains/openwiz/arm-openwiz-linux-gnu
|
|
|
|
AR = $(WIZSDK)/bin/arm-openwiz-linux-gnu-ar
|
|
RANLIB = $(WIZSDK)/bin/arm-openwiz-linux-gnu-ranlib
|
|
CC = $(WIZSDK)/bin/arm-openwiz-linux-gnu-gcc
|
|
CXX = $(WIZSDK)/bin/arm-openwiz-linux-gnu-g++
|
|
STRIP = $(WIZSDK)/bin/arm-openwiz-linux-gnu-strip
|
|
|
|
CFLAGS = -Wall -fPIC -I./include -I$(WIZSDK)/include -DWIZ_GLES_LITE
|
|
|
|
TARGET_STATIC = libSDL2.a
|
|
TARGET_SHARED = libSDL2.so
|
|
|
|
SOURCES = \
|
|
./src/*.c \
|
|
./src/audio/*.c \
|
|
./src/audio/disk/*.c \
|
|
./src/audio/dsp/*.c \
|
|
./src/audio/dummy/*.c \
|
|
./src/cpuinfo/*.c \
|
|
./src/events/*.c \
|
|
./src/file/*.c \
|
|
./src/haptic/*.c \
|
|
./src/haptic/linux/*.c \
|
|
./src/joystick/*.c \
|
|
./src/joystick/linux/*.c \
|
|
./src/loadso/dlopen/*.c \
|
|
./src/sensor/*.c \
|
|
./src/sensor/dummy/*.c \
|
|
./src/stdlib/*.c \
|
|
./src/thread/*.c \
|
|
./src/thread/pthread/SDL_syscond.c \
|
|
./src/thread/pthread/SDL_sysmutex.c \
|
|
./src/thread/pthread/SDL_syssem.c \
|
|
./src/thread/pthread/SDL_systhread.c \
|
|
./src/timer/*.c \
|
|
./src/timer/unix/*.c \
|
|
./src/video/*.c \
|
|
./src/video/dummy/*.c \
|
|
./src/video/pandora/*.c \
|
|
|
|
|
|
OBJECTS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g')
|
|
|
|
all: config_copy $(TARGET_STATIC) $(TARGET_SHARED)
|
|
|
|
$(TARGET_STATIC): $(OBJECTS)
|
|
$(AR) crv $@ $^
|
|
$(RANLIB) $@
|
|
|
|
$(TARGET_SHARED):
|
|
$(CC) -shared -Wl,-soname,$(TARGET_SHARED).0 -o $(TARGET_SHARED).0.0.1 $(OBJECTS)
|
|
ln -s $(TARGET_SHARED).0.0.1 $(TARGET_SHARED).0
|
|
ln -s $(TARGET_SHARED).0 $(TARGET_SHARED)
|
|
|
|
config_copy:
|
|
cp include/SDL_config_wiz.h include/SDL_config.h
|
|
|
|
clean:
|
|
rm -f $(TARGET_STATIC) $(TARGET_SHARED)* $(OBJECTS)
|
|
|
|
install:
|
|
mkdir -p $(WIZSDK)/lib
|
|
mkdir -p $(WIZSDK)/include/SDL2
|
|
cp -f $(TARGET_STATIC) $(WIZSDK)/lib
|
|
cp -f $(TARGET_SHARED).0.0.1 $(WIZSDK)/lib
|
|
rm -f $(WIZSDK)/lib/$(TARGET_SHARED).0 $(WIZSDK)/lib/$(TARGET_SHARED)
|
|
ln -s $(WIZSDK)/lib/$(TARGET_SHARED).0.0.1 $(WIZSDK)/lib/$(TARGET_SHARED).0
|
|
ln -s $(WIZSDK)/lib/$(TARGET_SHARED).0 $(WIZSDK)/lib/$(TARGET_SHARED)
|
|
|
|
cp $(TARGET_STATIC) ../../toolchain/libs
|
|
cp $(TARGET_SHARED).0.0.1 ../../toolchain/libs
|
|
rm -f ../../toolchain/libs/$(TARGET_SHARED).0 ../../toolchain/libs/$(TARGET_SHARED)
|
|
ln -s ../../toolchain/libs/$(TARGET_SHARED).0.0.1 ../../toolchain/libs/$(TARGET_SHARED).0
|
|
ln -s ../../toolchain/libs/$(TARGET_SHARED).0 ../../toolchain/libs/$(TARGET_SHARED)
|
|
|
|
cp $(TARGET_SHARED).0.0.1 ../nehe_demos/build/$(TARGET_SHARED).0
|
|
cp -f include/*.h $(WIZSDK)/include/SDL2/
|
|
cp -f include/*.h ../../toolchain/include/SDL2/
|