changeset 738:7de6eb6d427c

Clean cruft from Mingw cross-build Makefile.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 11 Dec 2022 00:00:23 +0200
parents 6b778871f770
children 32dab9b6058a
files Makefile.cross-mingw
diffstat 1 files changed, 1 insertions(+), 20 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.cross-mingw	Wed Dec 07 15:03:36 2022 +0200
+++ b/Makefile.cross-mingw	Sun Dec 11 00:00:23 2022 +0200
@@ -3,26 +3,14 @@
 ### compiler suite under Linux/Unix
 ###
 #
-# This Makefile assumes that you have MinGW installed under /usr
-# the way Debian MinGW packages do. It also assumes that you have
-# built/installed libogg, Tremor, libpng16, SDL2 ad SDL2_ttf under
-# __ /usr/local __ (not /usr!) in similar fashion.
-#
-# For differing configurations you will have to either edit this
-# file or alternatively provide make parameters, e.g.
-#
-# make -f Makefile.cross-mingw MINGW=64 BINTOOL_PREFIX=foo-bar-zoo
+# make -f Makefile.cross-mingw MINGW=64
 #
 
 ifeq ($(MINGW),64)
 BINTOOL_PREFIX ?= x86_64-w64-mingw32-
-MINGW_SYS_PATH ?= /usr/x86_64-w64-mingw32
-MINGW_LOCAL_PATH ?= /usr/local/x86_64-w64-mingw32
 OBJPATH ?= ./obj/win64/
 else
 BINTOOL_PREFIX ?= i686-w64-mingw32-
-MINGW_SYS_PATH ?= /usr/i686-w64-mingw32
-MINGW_LOCAL_PATH ?= /usr/local/i686-w64-mingw32
 OBJPATH ?= ./obj/win32/
 endif
 
@@ -42,12 +30,5 @@
 
 LDFLAGS +=
 
-
-###
-### Stuff
-###
-#NOINST_TARGETS += $(ENDIANCHK_BIN) config.h
-#THLIBS_DEP += config.h
-
 include Makefile.gen