comparison Makefile @ 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
21 LIBPNG_LDFLAGS ?= $(shell pkg-config --libs libpng) 21 LIBPNG_LDFLAGS ?= $(shell pkg-config --libs libpng)
22 22
23 ZLIB_CFLAGS ?= $(shell pkg-config --cflags zlib) 23 ZLIB_CFLAGS ?= $(shell pkg-config --cflags zlib)
24 ZLIB_LDFLAGS ?= $(shell pkg-config --libs zlib) 24 ZLIB_LDFLAGS ?= $(shell pkg-config --libs zlib)
25 25
26 FINDCHARGEN := $(shell sh $(DMLIB)/tools/findchargen.sh)
27 CFLAGS += $(FINDCHARGEN)
26 28
27 TOOL_LDFLAGS ?= 29 TOOL_LDFLAGS ?=
28 30
29 include $(DMLIB)Makefile.gen 31 include $(DMLIB)Makefile.gen
30 32