From 30f41c02aec763d32e62351452da9ef582bc3472 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 6 Mar 2026 13:30:59 -0800 Subject: Move contrib libraries to contrib repo --- .../build-scripts/pkg-support/mingw/Makefile | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 contrib/SDL-3.2.8/build-scripts/pkg-support/mingw/Makefile (limited to 'contrib/SDL-3.2.8/build-scripts/pkg-support/mingw/Makefile') diff --git a/contrib/SDL-3.2.8/build-scripts/pkg-support/mingw/Makefile b/contrib/SDL-3.2.8/build-scripts/pkg-support/mingw/Makefile deleted file mode 100644 index 9b6cd55..0000000 --- a/contrib/SDL-3.2.8/build-scripts/pkg-support/mingw/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# -# Makefile for installing the mingw32 version of the SDL library - -DESTDIR = /usr/local -ARCHITECTURES := i686-w64-mingw32 x86_64-w64-mingw32 - -default: - @echo "Run \"make install-i686\" to install 32-bit" - @echo "Run \"make install-x86_64\" to install 64-bit" - @echo "Run \"make install-all\" to install both" - @echo "Add DESTDIR=/custom/path to change the destination folder" - -install: - @if test -d $(ARCH) && test -d $(DESTDIR); then \ - (cd $(ARCH) && cp -rv bin include lib share $(DESTDIR)/); \ - else \ - echo "*** ERROR: $(ARCH) or $(DESTDIR) does not exist!"; \ - exit 1; \ - fi - -install-i686: - $(MAKE) install ARCH=i686-w64-mingw32 - -install-x86_64: - $(MAKE) install ARCH=x86_64-w64-mingw32 - -install-all: - @if test -d $(DESTDIR); then \ - mkdir -p $(DESTDIR)/cmake; \ - cp -rv cmake/* $(DESTDIR)/cmake; \ - for arch in $(ARCHITECTURES); do \ - $(MAKE) install ARCH=$$arch DESTDIR=$(DESTDIR)/$$arch; \ - done \ - else \ - echo "*** ERROR: $(DESTDIR) does not exist!"; \ - exit 1; \ - fi - -.PHONY: default install install-i686 install-x86_64 install-all -- cgit v1.2.3