comparison Makefile.cross-mingw @ 2547:71f04d8e791e

Implement a simple shell script for finding C64 chargen ROM image file (if any can be found) for *NIX builds and note the existence of the DM_DEF_CHARGEN define in MinGW Makefile with an example.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 18 Oct 2021 16:58:02 +0300
parents 8abdd95139d6
children 8ab923fe23ef
comparison
equal deleted inserted replaced
2546:b76ac594cf33 2547:71f04d8e791e
11 # For differing configurations you will have to either edit this 11 # For differing configurations you will have to either edit this
12 # file or alternatively provide make parameters, e.g. 12 # file or alternatively provide make parameters, e.g.
13 # 13 #
14 # make -f Makefile.cross-mingw MINGW=64 BINTOOL_PREFIX=foo-bar-zoo 14 # make -f Makefile.cross-mingw MINGW=64 BINTOOL_PREFIX=foo-bar-zoo
15 # 15 #
16
17 # NOTE! If you want to define the default path for C64 chargen
18 # ROM image file, you can set it with this define. Do take note of
19 # the somewhat peculiar quotation and escape of backlash '\', these
20 # are REQUIRED.
21 CFLAGS += -DDM_DEF_CHARGEN='"C:\\VICE-3.5\\C64\\chargen"'
22
16 23
17 ifeq ($(MINGW),64) 24 ifeq ($(MINGW),64)
18 BINTOOL_PREFIX ?= x86_64-w64-mingw32- 25 BINTOOL_PREFIX ?= x86_64-w64-mingw32-
19 MINGW_SYS_PATH ?= /usr/x86_64-w64-mingw32 26 MINGW_SYS_PATH ?= /usr/x86_64-w64-mingw32
20 MINGW_LOCAL_PATH ?= /usr/local/x86_64-w64-mingw32 27 MINGW_LOCAL_PATH ?= /usr/local/x86_64-w64-mingw32