view Makefile.djgpp @ 341:fe061ead51cc

Perform character set conversion after item formatting step instead of before it. This should remedy the potential issue of formatting not taking UTF8 multibyte into account, as our formatting unfortunately does not support multibyte encoding. This way the data should stay in ISO-8859-1 format just up to outputting it.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 13 Jan 2020 16:29:47 +0200
parents 0d0ccaa46985
children 9bf282a79ac4
line wrap: on
line source

#
# For cross-compilation of DJGPP/DOS version under Linux
#

# Compiler, flags and linker flags
export PATH := /opt/bin:$(PATH)

BINTOOL_PREFIX=i586-pc-msdosdjgpp-

CFLAGS += -DTH_BYTEORDER=TH_LITTLE_ENDIAN
LDFLAGS += -s

CFLAGS += -DHAVE_STRING_H
CFLAGS += -DHAVE_INTTYPES_H

# Miscellaneous
BINEXT=.exe
OBJPATH=obj/dos/
BINPATH=./


###
### Stuff
###
include Makefile.gen