2017-05-05 01:49:42 +02:00
|
|
|
#
|
2022-02-20 19:11:58 -05:00
|
|
|
#
|
2022-11-15 12:48:58 -05:00
|
|
|
# 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
# running old operating systems and software designed for IBM
|
|
|
|
|
# PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
# system designs based on the PCI bus.
|
2017-05-05 01:49:42 +02:00
|
|
|
#
|
2022-11-15 12:48:58 -05:00
|
|
|
# This file is part of the 86Box distribution.
|
2017-05-05 01:49:42 +02:00
|
|
|
#
|
2022-11-15 12:48:58 -05:00
|
|
|
# Makefile for Win32 (MinGW32) environment.
|
2017-05-05 01:49:42 +02:00
|
|
|
#
|
2022-11-15 12:48:58 -05:00
|
|
|
# Authors: Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
# Fred N. van Kempen, <decwiz@yahoo.com>
|
2017-05-05 01:49:42 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# Various compile-time options.
|
2017-10-19 21:08:34 -04:00
|
|
|
ifndef STUFF
|
2022-11-15 14:02:57 -05:00
|
|
|
STUFF :=
|
2017-10-19 21:08:34 -04:00
|
|
|
endif
|
2017-05-05 01:49:42 +02:00
|
|
|
|
|
|
|
|
# Add feature selections here.
|
2017-05-24 00:27:42 -04:00
|
|
|
ifndef EXTRAS
|
2022-11-15 14:02:57 -05:00
|
|
|
EXTRAS :=
|
2017-05-24 00:27:42 -04:00
|
|
|
endif
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2018-03-05 20:47:48 +01:00
|
|
|
ifndef DEV_BUILD
|
2022-11-15 14:02:57 -05:00
|
|
|
DEV_BUILD := n
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifeq ($(DEV_BUILD), y)
|
|
|
|
|
ifndef DEBUG
|
2022-11-15 12:48:58 -05:00
|
|
|
DEBUG := y
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2022-07-19 21:10:16 -04:00
|
|
|
ifndef GDBSTUB
|
2022-11-15 12:48:58 -05:00
|
|
|
GDBSTUB := n
|
2022-07-19 21:10:16 -04:00
|
|
|
endif
|
2018-03-05 20:47:48 +01:00
|
|
|
ifndef DEV_BRANCH
|
2022-11-15 12:48:58 -05:00
|
|
|
DEV_BRANCH := y
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2020-04-10 01:08:52 +02:00
|
|
|
ifndef AMD_K5
|
2022-11-15 12:48:58 -05:00
|
|
|
AMD_K5 := y
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2022-04-12 15:31:44 +05:00
|
|
|
ifndef AN430TX
|
2022-11-15 12:48:58 -05:00
|
|
|
AN430TX := y
|
2022-04-12 15:31:44 +05:00
|
|
|
endif
|
2020-07-06 13:01:52 -06:00
|
|
|
ifndef CYRIX_6X86
|
2022-11-15 12:48:58 -05:00
|
|
|
CYRIX_6X86 := y
|
2021-03-25 03:08:50 -05:00
|
|
|
endif
|
2022-04-12 15:26:16 +05:00
|
|
|
ifndef DESKPRO386
|
2022-11-15 12:48:58 -05:00
|
|
|
DESKPRO386 := y
|
2022-04-12 15:26:16 +05:00
|
|
|
endif
|
2020-10-15 23:54:18 +02:00
|
|
|
ifndef GUSMAX
|
2022-11-15 12:48:58 -05:00
|
|
|
GUSMAX := y
|
2020-10-15 23:54:18 +02:00
|
|
|
endif
|
2022-02-14 05:11:08 +05:00
|
|
|
ifndef ISAMEM_RAMPAGE
|
|
|
|
|
ISAMEM_RAMPAGE := y
|
|
|
|
|
endif
|
|
|
|
|
ifndef ISAMEM_IAB
|
|
|
|
|
ISAMEM_IAB := y
|
|
|
|
|
endif
|
|
|
|
|
ifndef ISAMEM_BRAT
|
|
|
|
|
ISAMEM_BRAT := y
|
|
|
|
|
endif
|
2018-03-05 20:47:48 +01:00
|
|
|
ifndef LASERXT
|
2022-11-15 12:48:58 -05:00
|
|
|
LASERXT := y
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2020-04-20 14:50:03 +02:00
|
|
|
ifndef MGA
|
2022-11-15 12:48:58 -05:00
|
|
|
MGA := y
|
2020-04-20 14:50:03 +02:00
|
|
|
endif
|
2022-04-19 18:36:30 -04:00
|
|
|
ifndef OLIVETTI
|
2022-11-15 12:48:58 -05:00
|
|
|
OLIVETTI := y
|
2020-10-15 23:54:18 +02:00
|
|
|
endif
|
2020-07-12 19:40:48 +02:00
|
|
|
ifndef OPEN_AT
|
2022-11-15 12:48:58 -05:00
|
|
|
OPEN_AT := y
|
2020-07-12 19:40:48 +02:00
|
|
|
endif
|
2018-03-05 20:47:48 +01:00
|
|
|
ifndef PAS16
|
2022-11-15 12:48:58 -05:00
|
|
|
PAS16 := y
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2023-02-11 22:17:41 +01:00
|
|
|
ifndef PCI_DUMMY
|
|
|
|
|
PCI_DUMMY := y
|
|
|
|
|
endif
|
2020-10-15 23:54:18 +02:00
|
|
|
ifndef SIO_DETECT
|
2022-11-15 12:48:58 -05:00
|
|
|
SIO_DETECT := y
|
2020-10-15 23:54:18 +02:00
|
|
|
endif
|
2022-04-19 18:36:30 -04:00
|
|
|
ifndef VGAWONDER
|
2022-11-15 12:48:58 -05:00
|
|
|
VGAWONDER := y
|
2020-04-18 11:51:54 +02:00
|
|
|
endif
|
2018-03-05 20:47:48 +01:00
|
|
|
ifndef XL24
|
2022-11-15 12:48:58 -05:00
|
|
|
XL24 := y
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2021-07-04 17:40:39 +02:00
|
|
|
ifndef NEW_KBC
|
2022-11-15 12:48:58 -05:00
|
|
|
NEW_KBC := n
|
2021-07-04 17:40:39 +02:00
|
|
|
endif
|
2018-03-05 20:47:48 +01:00
|
|
|
else
|
|
|
|
|
ifndef DEBUG
|
2022-11-15 12:48:58 -05:00
|
|
|
DEBUG := n
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2022-07-19 21:10:16 -04:00
|
|
|
ifndef GDBSTUB
|
2022-11-15 12:48:58 -05:00
|
|
|
GDBSTUB := n
|
2022-07-19 21:10:16 -04:00
|
|
|
endif
|
2018-03-05 20:47:48 +01:00
|
|
|
ifndef DEV_BRANCH
|
2022-11-15 12:48:58 -05:00
|
|
|
DEV_BRANCH := n
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2020-04-10 01:08:52 +02:00
|
|
|
ifndef AMD_K5
|
2022-11-15 12:48:58 -05:00
|
|
|
AMD_K5 := n
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2022-04-12 15:31:44 +05:00
|
|
|
ifndef AN430TX
|
2022-11-15 12:48:58 -05:00
|
|
|
AN430TX := n
|
2022-04-12 15:31:44 +05:00
|
|
|
endif
|
2020-07-06 13:01:52 -06:00
|
|
|
ifndef CYRIX_6X86
|
2022-11-15 12:48:58 -05:00
|
|
|
CYRIX_6X86 := n
|
2020-10-15 23:54:18 +02:00
|
|
|
endif
|
2022-04-12 15:26:16 +05:00
|
|
|
ifndef DESKPRO386
|
2022-11-15 12:48:58 -05:00
|
|
|
DESKPRO386 := n
|
2022-04-12 15:26:16 +05:00
|
|
|
endif
|
2020-10-15 23:54:18 +02:00
|
|
|
ifndef GUSMAX
|
2022-11-15 12:48:58 -05:00
|
|
|
GUSMAX := n
|
2020-10-15 23:54:18 +02:00
|
|
|
endif
|
2022-02-14 05:11:08 +05:00
|
|
|
ifndef ISAMEM_RAMPAGE
|
|
|
|
|
ISAMEM_RAMPAGE := n
|
|
|
|
|
endif
|
|
|
|
|
ifndef ISAMEM_IAB
|
|
|
|
|
ISAMEM_IAB := n
|
|
|
|
|
endif
|
|
|
|
|
ifndef ISAMEM_BRAT
|
|
|
|
|
ISAMEM_BRAT := n
|
|
|
|
|
endif
|
2018-03-05 20:47:48 +01:00
|
|
|
ifndef LASERXT
|
2022-11-15 12:48:58 -05:00
|
|
|
LASERXT := n
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2020-04-20 14:50:03 +02:00
|
|
|
ifndef MGA
|
2022-11-15 12:48:58 -05:00
|
|
|
MGA := n
|
2020-04-20 14:50:03 +02:00
|
|
|
endif
|
2022-04-19 18:36:30 -04:00
|
|
|
ifndef OLIVETTI
|
2022-11-15 12:48:58 -05:00
|
|
|
OLIVETTI := n
|
2020-10-15 23:54:18 +02:00
|
|
|
endif
|
2020-07-12 19:40:48 +02:00
|
|
|
ifndef OPEN_AT
|
2022-11-15 12:48:58 -05:00
|
|
|
OPEN_AT := n
|
2020-07-12 19:40:48 +02:00
|
|
|
endif
|
2018-03-05 20:47:48 +01:00
|
|
|
ifndef PAS16
|
2022-11-15 12:48:58 -05:00
|
|
|
PAS16 := n
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2023-02-11 22:17:41 +01:00
|
|
|
ifndef PCI_DUMMY
|
|
|
|
|
PCI_DUMMY := n
|
|
|
|
|
endif
|
2020-10-15 23:54:18 +02:00
|
|
|
ifndef SIO_DETECT
|
2022-11-15 12:48:58 -05:00
|
|
|
SIO_DETECT := n
|
2020-10-15 23:54:18 +02:00
|
|
|
endif
|
2022-04-19 18:36:30 -04:00
|
|
|
ifndef VGAWONDER
|
2022-11-15 12:48:58 -05:00
|
|
|
VGAWONDER := n
|
2020-04-18 11:51:54 +02:00
|
|
|
endif
|
2018-03-05 20:47:48 +01:00
|
|
|
ifndef XL24
|
2022-11-15 12:48:58 -05:00
|
|
|
XL24 := n
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
2021-07-04 17:40:39 +02:00
|
|
|
ifndef NEW_KBC
|
2022-11-15 12:48:58 -05:00
|
|
|
NEW_KBC := n
|
2021-07-04 17:40:39 +02:00
|
|
|
endif
|
2018-03-05 20:47:48 +01:00
|
|
|
endif
|
|
|
|
|
|
2017-06-14 00:55:11 -04:00
|
|
|
# Defaults for several build options (possibly defined in a chained file.)
|
2017-09-25 20:46:14 -04:00
|
|
|
ifndef AUTODEP
|
2022-11-15 14:02:57 -05:00
|
|
|
AUTODEP := n
|
2017-09-25 20:46:14 -04:00
|
|
|
endif
|
2017-05-24 00:27:42 -04:00
|
|
|
ifndef OPTIM
|
2022-11-15 14:02:57 -05:00
|
|
|
OPTIM := n
|
2017-05-24 00:27:42 -04:00
|
|
|
endif
|
2017-06-03 14:24:19 +02:00
|
|
|
ifndef RELEASE
|
2022-11-15 14:02:57 -05:00
|
|
|
RELEASE := n
|
2017-06-03 14:24:19 +02:00
|
|
|
endif
|
2017-11-19 03:15:29 -05:00
|
|
|
ifndef X64
|
2022-11-15 14:02:57 -05:00
|
|
|
X64 := n
|
2017-11-19 03:15:29 -05:00
|
|
|
endif
|
2019-03-20 07:41:46 +08:00
|
|
|
ifndef ARM
|
2022-11-15 14:02:57 -05:00
|
|
|
ARM := n
|
2019-03-20 07:41:46 +08:00
|
|
|
endif
|
|
|
|
|
ifndef ARM64
|
2022-11-15 14:02:57 -05:00
|
|
|
ARM64 := n
|
2019-03-20 07:41:46 +08:00
|
|
|
endif
|
|
|
|
|
ifndef DINPUT
|
2022-11-15 12:48:58 -05:00
|
|
|
DINPUT := n
|
2019-03-20 07:41:46 +08:00
|
|
|
endif
|
2022-06-26 01:33:12 +02:00
|
|
|
ifndef FAUDIO
|
2022-11-15 12:48:58 -05:00
|
|
|
FAUDIO := n
|
2022-06-26 01:33:12 +02:00
|
|
|
endif
|
2017-10-27 04:54:45 -04:00
|
|
|
ifndef OPENAL
|
2022-11-17 22:44:06 +01:00
|
|
|
OPENAL := y
|
2017-10-27 04:54:45 -04:00
|
|
|
endif
|
2017-08-08 22:51:47 -04:00
|
|
|
ifndef FLUIDSYNTH
|
2022-11-15 12:48:58 -05:00
|
|
|
FLUIDSYNTH := y
|
2017-08-08 22:51:47 -04:00
|
|
|
endif
|
2017-08-27 00:58:44 +02:00
|
|
|
ifndef MUNT
|
2022-11-15 12:48:58 -05:00
|
|
|
MUNT := y
|
2017-08-27 00:58:44 +02:00
|
|
|
endif
|
2022-04-12 15:55:33 +05:00
|
|
|
ifndef VNC
|
2022-11-15 12:48:58 -05:00
|
|
|
VNC := n
|
2022-04-12 15:55:33 +05:00
|
|
|
endif
|
2020-06-13 12:32:09 +02:00
|
|
|
ifndef NEW_DYNAREC
|
2022-11-15 12:48:58 -05:00
|
|
|
NEW_DYNAREC := n
|
2020-06-13 12:32:09 +02:00
|
|
|
endif
|
2017-10-15 02:43:13 +02:00
|
|
|
ifndef DYNAREC
|
2022-11-15 12:48:58 -05:00
|
|
|
DYNAREC := y
|
2020-06-13 12:32:09 +02:00
|
|
|
endif
|
2021-12-17 06:59:53 +01:00
|
|
|
ifndef CPPTHREADS
|
2022-11-15 12:48:58 -05:00
|
|
|
CPPTHREADS := y
|
2021-12-17 06:59:53 +01:00
|
|
|
endif
|
2022-03-11 21:19:59 +01:00
|
|
|
ifndef RTMIDI
|
2022-11-15 12:48:58 -05:00
|
|
|
RTMIDI := y
|
2022-12-18 22:40:00 -05:00
|
|
|
endif
|
|
|
|
|
ifndef MINITRACE
|
|
|
|
|
MINITRACE := n
|
2022-03-11 21:19:59 +01:00
|
|
|
endif
|
2023-04-19 23:34:32 +02:00
|
|
|
ifndef AVX
|
|
|
|
|
AVX := n
|
|
|
|
|
endif
|
2020-06-13 12:32:09 +02:00
|
|
|
ifeq ($(DYNAREC), y)
|
2019-03-20 07:41:46 +08:00
|
|
|
ifeq ($(ARM), y)
|
2020-06-13 12:32:09 +02:00
|
|
|
ifeq ($(NEW_DYNAREC), n)
|
2022-11-15 12:48:58 -05:00
|
|
|
DYNAREC := n
|
2020-06-13 12:32:09 +02:00
|
|
|
endif
|
2019-03-20 07:41:46 +08:00
|
|
|
endif
|
|
|
|
|
ifeq ($(ARM64), y)
|
2020-06-13 12:32:09 +02:00
|
|
|
ifeq ($(NEW_DYNAREC), n)
|
2022-11-15 12:48:58 -05:00
|
|
|
DYNAREC := n
|
2020-06-13 12:32:09 +02:00
|
|
|
endif
|
2019-03-20 07:41:46 +08:00
|
|
|
endif
|
2017-10-15 02:43:13 +02:00
|
|
|
endif
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
|
2020-06-13 12:32:09 +02:00
|
|
|
# Path to the dynamic recompiler code.
|
|
|
|
|
ifeq ($(NEW_DYNAREC), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
CODEGEN := codegen_new
|
2020-06-13 12:32:09 +02:00
|
|
|
else
|
2022-11-15 12:48:58 -05:00
|
|
|
CODEGEN := codegen
|
2020-06-13 12:32:09 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
# Name of the executable.
|
2022-11-15 12:48:58 -05:00
|
|
|
PROG := 86Box
|
2017-10-01 03:43:56 +02:00
|
|
|
|
2017-05-05 01:49:42 +02:00
|
|
|
|
|
|
|
|
#########################################################################
|
2022-11-15 12:48:58 -05:00
|
|
|
# Nothing should need changing from here on.. #
|
2017-05-05 01:49:42 +02:00
|
|
|
#########################################################################
|
2023-04-29 18:56:57 +02:00
|
|
|
VPATH := $(EXPATH) . $(CODEGEN) minitrace cpu cpu/softfloat \
|
2023-07-15 03:14:13 +02:00
|
|
|
cpu/808x cdrom chipset device disk disk/minivhd floppy \
|
2022-11-15 12:48:58 -05:00
|
|
|
game machine mem printer \
|
|
|
|
|
sio sound \
|
|
|
|
|
sound/munt sound/munt/c_interface sound/munt/sha1 \
|
|
|
|
|
sound/munt/srchelper sound/munt/srchelper/srctools/src \
|
|
|
|
|
sound/resid-fp sound/ymfm \
|
2023-07-12 00:48:13 +02:00
|
|
|
scsi video network win
|
2023-02-03 00:49:32 -05:00
|
|
|
|
|
|
|
|
WINDRES := windres
|
|
|
|
|
STRIP := strip
|
2017-06-14 00:55:11 -04:00
|
|
|
ifeq ($(X64), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
TOOL_PREFIX := x86_64-w64-mingw32-
|
2017-06-14 00:55:11 -04:00
|
|
|
else
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(ARM64), y)
|
2023-02-03 00:49:32 -05:00
|
|
|
TOOL_PREFIX := aarch64-w64-mingw32-
|
|
|
|
|
WINDRES := ${TOOL_PREFIX}windres
|
|
|
|
|
STRIP := ${TOOL_PREFIX}strip
|
2022-11-15 14:02:57 -05:00
|
|
|
endif
|
|
|
|
|
ifeq ($(ARM), y)
|
2023-02-03 00:49:32 -05:00
|
|
|
TOOL_PREFIX := armv7-w64-mingw32-
|
|
|
|
|
WINDRES := ${TOOL_PREFIX}windres
|
|
|
|
|
STRIP := ${TOOL_PREFIX}strip
|
2022-11-15 14:02:57 -05:00
|
|
|
endif
|
2023-02-03 00:49:32 -05:00
|
|
|
TOOL_PREFIX := i686-w64-mingw32-
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifeq ($(CLANG), y)
|
2023-07-27 02:33:40 +02:00
|
|
|
CPP := clang++
|
|
|
|
|
CC := clang
|
2021-08-29 13:59:05 +02:00
|
|
|
else
|
2022-11-15 14:02:57 -05:00
|
|
|
CPP := ${TOOL_PREFIX}g++
|
|
|
|
|
CC := ${TOOL_PREFIX}gcc
|
2021-08-29 13:59:05 +02:00
|
|
|
endif
|
2023-02-03 00:49:32 -05:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
DEPS = -MMD -MF $*.d -c $<
|
|
|
|
|
DEPFILE := win/.depends
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2017-09-25 04:31:20 -04:00
|
|
|
# Set up the correct toolchain flags.
|
2022-11-15 12:48:58 -05:00
|
|
|
OPTS := $(EXTRAS) $(STUFF)
|
|
|
|
|
OPTS += -Iinclude -Iinclude_make \
|
|
|
|
|
-iquote $(CODEGEN) -iquote cpu
|
2017-09-04 01:52:29 -04:00
|
|
|
ifdef EXFLAGS
|
2022-11-15 14:02:57 -05:00
|
|
|
OPTS += $(EXFLAGS)
|
2017-09-04 01:52:29 -04:00
|
|
|
endif
|
2017-09-13 01:58:18 -04:00
|
|
|
ifdef EXINC
|
2022-11-15 14:02:57 -05:00
|
|
|
OPTS += -I$(EXINC)
|
2017-09-13 01:58:18 -04:00
|
|
|
endif
|
2021-08-29 13:59:05 +02:00
|
|
|
ifeq ($(OPTIM), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
DFLAGS := -march=native
|
2017-05-05 02:58:42 +02:00
|
|
|
else
|
2021-08-29 13:59:05 +02:00
|
|
|
ifeq ($(X64), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
DFLAGS :=
|
2017-06-19 07:00:41 +02:00
|
|
|
else
|
2022-11-15 12:48:58 -05:00
|
|
|
DFLAGS := -march=i686
|
2017-06-19 07:00:41 +02:00
|
|
|
endif
|
2017-05-05 01:49:42 +02:00
|
|
|
endif
|
2017-06-14 00:55:11 -04:00
|
|
|
ifeq ($(DEBUG), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
DFLAGS += -ggdb -DDEBUG
|
|
|
|
|
AOPTIM :=
|
2017-06-14 00:55:11 -04:00
|
|
|
ifndef COPTIM
|
2022-11-15 12:48:58 -05:00
|
|
|
COPTIM := -Og
|
2017-06-14 00:55:11 -04:00
|
|
|
endif
|
2023-07-27 02:33:40 +02:00
|
|
|
ifndef CXXOPTIM
|
|
|
|
|
ifeq ($(CLANG), y)
|
|
|
|
|
CXXOPTIM := -Os
|
|
|
|
|
else
|
|
|
|
|
CXXOPTIM := -Og
|
|
|
|
|
endif
|
|
|
|
|
endif
|
2017-05-06 17:48:33 +02:00
|
|
|
else
|
2022-11-15 12:48:58 -05:00
|
|
|
DFLAGS += -g0
|
2017-06-14 00:55:11 -04:00
|
|
|
ifeq ($(OPTIM), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
AOPTIM := -mtune=native
|
2017-06-14 00:55:11 -04:00
|
|
|
ifndef COPTIM
|
2023-07-27 02:33:40 +02:00
|
|
|
CXXOPTIM := -O3 -ffp-contract=fast -flto
|
|
|
|
|
endif
|
|
|
|
|
ifndef CXXOPTIM
|
|
|
|
|
ifeq ($(CLANG), y)
|
|
|
|
|
CXXOPTIM := -Os -ffp-contract=fast -flto
|
|
|
|
|
else
|
|
|
|
|
CXXOPTIM := -O3 -ffp-contract=fast -flto
|
|
|
|
|
endif
|
2017-06-14 00:55:11 -04:00
|
|
|
endif
|
|
|
|
|
else
|
|
|
|
|
ifndef COPTIM
|
2022-11-15 12:48:58 -05:00
|
|
|
COPTIM := -O3
|
2017-06-14 00:55:11 -04:00
|
|
|
endif
|
2023-07-27 02:33:40 +02:00
|
|
|
ifndef CXXOPTIM
|
|
|
|
|
ifeq ($(CLANG), y)
|
|
|
|
|
CXXOPTIM := -Os
|
|
|
|
|
else
|
|
|
|
|
CXXOPTIM := -O3
|
|
|
|
|
endif
|
|
|
|
|
endif
|
2017-06-14 00:55:11 -04:00
|
|
|
endif
|
2017-05-06 17:48:33 +02:00
|
|
|
endif
|
2023-04-19 23:34:32 +02:00
|
|
|
ifeq ($(AVX), y)
|
|
|
|
|
AFLAGS := -msse2 -msse3 -mssse3 -msse4 -msse4a -mavx -mavx2 -mfpmath=sse
|
|
|
|
|
else
|
|
|
|
|
AFLAGS := -msse2 -mfpmath=sse
|
|
|
|
|
endif
|
2019-03-20 07:41:46 +08:00
|
|
|
ifeq ($(ARM), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
DFLAGS := -march=armv7-a
|
|
|
|
|
AOPTIM :=
|
|
|
|
|
AFLAGS := -mfloat-abi=hard
|
2019-03-20 07:41:46 +08:00
|
|
|
endif
|
|
|
|
|
ifeq ($(ARM64), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
DFLAGS := -march=armv8-a
|
|
|
|
|
AOPTIM :=
|
|
|
|
|
AFLAGS := -mfloat-abi=hard
|
2019-03-20 07:41:46 +08:00
|
|
|
endif
|
2022-11-15 12:48:58 -05:00
|
|
|
RFLAGS := --input-format=rc -O coff -Iinclude -Iinclude_make
|
2017-05-07 04:56:34 +02:00
|
|
|
ifeq ($(RELEASE), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
OPTS += -DRELEASE_BUILD
|
|
|
|
|
RFLAGS += -DRELEASE_BUILD
|
2017-05-07 04:56:34 +02:00
|
|
|
endif
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# Optional modules.
|
|
|
|
|
ifeq ($(DYNAREC), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
OPTS += -DUSE_DYNAREC
|
|
|
|
|
RFLAGS += -DUSE_DYNAREC
|
2020-06-13 12:32:09 +02:00
|
|
|
|
|
|
|
|
ifeq ($(NEW_DYNAREC), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
OPTS += -DUSE_NEW_DYNAREC
|
|
|
|
|
RFLAGS += -DUSE_NEW_DYNAREC
|
2020-06-13 12:32:09 +02:00
|
|
|
|
|
|
|
|
ifeq ($(X64), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
PLATCG := codegen_backend_x86-64.o codegen_backend_x86-64_ops.o codegen_backend_x86-64_ops_sse.o \
|
|
|
|
|
codegen_backend_x86-64_uops.o
|
2020-06-13 12:32:09 +02:00
|
|
|
else ifeq ($(ARM64), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
PLATCG := codegen_backend_arm64.o codegen_backend_arm64_ops.o codegen_backend_arm64_uops.o \
|
|
|
|
|
codegen_backend_arm64_imm.o
|
2020-06-13 12:32:09 +02:00
|
|
|
else ifeq ($(ARM), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
PLATCG := codegen_backend_arm.o codegen_backend_arm_ops.o codegen_backend_arm_uops.o
|
2020-06-13 12:32:09 +02:00
|
|
|
else
|
2022-11-15 12:48:58 -05:00
|
|
|
PLATCG := codegen_backend_x86.o codegen_backend_x86_ops.o codegen_backend_x86_ops_fpu.o \
|
|
|
|
|
codegen_backend_x86_ops_sse.o codegen_backend_x86_uops.o
|
2020-06-13 12:32:09 +02:00
|
|
|
endif
|
|
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
DYNARECOBJ := codegen.o codegen_accumulate.o codegen_allocator.o codegen_block.o codegen_ir.o codegen_ops.o \
|
|
|
|
|
codegen_ops_3dnow.o codegen_ops_branch.o codegen_ops_arith.o codegen_ops_fpu_arith.o \
|
|
|
|
|
codegen_ops_fpu_constant.o codegen_ops_fpu_loadstore.o codegen_ops_fpu_misc.o codegen_ops_helpers.o \
|
|
|
|
|
codegen_ops_jump.o codegen_ops_logic.o codegen_ops_misc.o codegen_ops_mmx_arith.o codegen_ops_mmx_cmp.o \
|
|
|
|
|
codegen_ops_mmx_loadstore.o codegen_ops_mmx_logic.o codegen_ops_mmx_pack.o codegen_ops_mmx_shift.o \
|
|
|
|
|
codegen_ops_mov.o codegen_ops_shift.o codegen_ops_stack.o codegen_reg.o $(PLATCG)
|
2020-06-13 12:32:09 +02:00
|
|
|
else
|
|
|
|
|
ifeq ($(X64), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
PLATCG := codegen_x86-64.o codegen_accumulate_x86-64.o
|
2020-06-13 12:32:09 +02:00
|
|
|
else
|
2022-11-15 12:48:58 -05:00
|
|
|
PLATCG := codegen_x86.o codegen_accumulate_x86.o
|
2020-06-13 12:32:09 +02:00
|
|
|
endif
|
|
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
DYNARECOBJ := codegen.o \
|
|
|
|
|
codegen_ops.o $(PLATCG)
|
2020-06-13 12:32:09 +02:00
|
|
|
endif
|
|
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
CGTOBJ := codegen_timing_486.o \
|
|
|
|
|
codegen_timing_686.o codegen_timing_common.o codegen_timing_k6.o codegen_timing_pentium.o \
|
|
|
|
|
codegen_timing_p6.o codegen_timing_winchip.o codegen_timing_winchip2.o
|
2020-06-13 12:32:09 +02:00
|
|
|
else
|
|
|
|
|
ifeq ($(NEW_DYNAREC), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
OPTS += -DUSE_NEW_DYNAREC
|
|
|
|
|
RFLAGS += -DUSE_NEW_DYNAREC
|
2020-06-13 12:32:09 +02:00
|
|
|
endif
|
2017-10-15 02:43:13 +02:00
|
|
|
endif
|
|
|
|
|
|
2017-08-08 22:51:47 -04:00
|
|
|
ifeq ($(FLUIDSYNTH), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
OPTS += -DUSE_FLUIDSYNTH
|
|
|
|
|
FSYNTHOBJ := midi_fluidsynth.o
|
2017-08-08 22:51:47 -04:00
|
|
|
endif
|
2017-09-25 04:31:20 -04:00
|
|
|
|
2017-08-27 00:58:44 +02:00
|
|
|
ifeq ($(MUNT), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
OPTS += -DUSE_MUNT
|
|
|
|
|
MUNTOBJ := midi_mt32.o \
|
|
|
|
|
Analog.o BReverbModel.o Display.o File.o FileStream.o LA32Ramp.o \
|
|
|
|
|
LA32FloatWaveGenerator.o LA32WaveGenerator.o \
|
|
|
|
|
MidiStreamParser.o Part.o Partial.o PartialManager.o \
|
|
|
|
|
Poly.o ROMInfo.o SampleRateConverter.o \
|
|
|
|
|
FIRResampler.o IIR2xResampler.o LinearResampler.o ResamplerModel.o \
|
|
|
|
|
SincResampler.o InternalResampler.o \
|
|
|
|
|
Synth.o Tables.o TVA.o TVF.o TVP.o sha1.o c_interface.o
|
2017-08-27 00:58:44 +02:00
|
|
|
endif
|
2017-09-25 04:31:20 -04:00
|
|
|
|
2021-12-17 06:59:53 +01:00
|
|
|
ifeq ($(CPPTHREADS), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
THREADOBJ := thread.o
|
2021-12-17 06:59:53 +01:00
|
|
|
else
|
2022-11-15 14:02:57 -05:00
|
|
|
THREADOBJ := win_thread.o
|
2021-12-17 06:59:53 +01:00
|
|
|
endif
|
|
|
|
|
|
2020-04-18 11:51:54 +02:00
|
|
|
ifeq ($(VNC), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
OPTS += -DUSE_VNC
|
|
|
|
|
RFLAGS += -DUSE_VNC
|
2017-10-14 20:04:21 -04:00
|
|
|
ifneq ($(VNC_PATH), )
|
2022-11-15 12:48:58 -05:00
|
|
|
OPTS += -I$(VNC_PATH)\INCLUDE
|
|
|
|
|
VNCLIB := -L$(VNC_PATH)\LIB
|
2017-10-14 20:04:21 -04:00
|
|
|
endif
|
2022-12-29 21:59:21 -05:00
|
|
|
VNCLIB += -lvncserver.dll
|
2022-11-15 14:02:57 -05:00
|
|
|
VNCOBJ := vnc.o vnc_keymap.o
|
2020-04-18 11:51:54 +02:00
|
|
|
endif
|
2017-10-14 00:49:08 -04:00
|
|
|
|
2021-02-10 20:22:51 +00:00
|
|
|
ifeq ($(MINITRACE), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
OPTS += -DMTR_ENABLED
|
|
|
|
|
RFLAGS += -DMTR_ENABLED
|
|
|
|
|
MINITRACEOBJ := minitrace.o
|
2021-02-10 20:22:51 +00:00
|
|
|
endif
|
|
|
|
|
|
2022-07-12 21:09:21 +02:00
|
|
|
ifeq ($(FAUDIO), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
OPTS += -DUSE_FAUDIO
|
2022-07-12 21:09:21 +02:00
|
|
|
endif
|
|
|
|
|
|
2017-09-04 01:52:29 -04:00
|
|
|
# Options for the DEV branch.
|
2017-07-30 23:21:11 -05:00
|
|
|
ifeq ($(DEV_BRANCH), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
OPTS += -DDEV_BRANCH
|
|
|
|
|
RFLAGS += -DDEV_BRANCH
|
|
|
|
|
DEVBROBJ :=
|
2018-02-18 13:43:49 +01:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(AMD_K5), y)
|
|
|
|
|
OPTS += -DUSE_AMD_K5
|
|
|
|
|
endif
|
2022-04-12 15:31:44 +05:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(AN430TX), y)
|
|
|
|
|
OPTS += -DUSE_AN430TX
|
|
|
|
|
endif
|
2020-07-06 13:01:52 -06:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(CYRIX_6X86), y)
|
|
|
|
|
OPTS += -DUSE_CYRIX_6X86
|
|
|
|
|
endif
|
2022-04-12 15:26:16 +05:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(DESKPRO386), y)
|
|
|
|
|
OPTS += -DUSE_DESKPRO386
|
|
|
|
|
endif
|
2020-12-04 20:40:48 +05:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(GUSMAX), y)
|
|
|
|
|
OPTS += -DUSE_GUSMAX
|
|
|
|
|
endif
|
2022-02-14 05:11:08 +05:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(ISAMEM_RAMPAGE), y)
|
|
|
|
|
OPTS += -DUSE_ISAMEM_RAMPAGE
|
|
|
|
|
endif
|
2022-02-14 05:11:08 +05:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(ISAMEM_IAB), y)
|
|
|
|
|
OPTS += -DUSE_ISAMEM_IAB
|
|
|
|
|
endif
|
2022-02-14 05:11:08 +05:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(ISAMEM_BRAT), y)
|
|
|
|
|
OPTS += -DUSE_ISAMEM_BRAT
|
|
|
|
|
endif
|
2018-01-28 17:56:32 +01:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(LASERXT), y)
|
|
|
|
|
OPTS += -DUSE_LASERXT
|
|
|
|
|
DEVBROBJ += m_xt_laserxt.o
|
|
|
|
|
endif
|
2020-04-20 14:50:03 +02:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(MGA), y)
|
|
|
|
|
OPTS += -DUSE_MGA
|
|
|
|
|
endif
|
2020-07-12 19:40:48 +02:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(OPEN_AT), y)
|
|
|
|
|
OPTS += -DUSE_OPEN_AT
|
|
|
|
|
endif
|
2017-10-14 20:04:21 -04:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(PAS16), y)
|
|
|
|
|
OPTS += -DUSE_PAS16
|
|
|
|
|
DEVBROBJ += snd_pas16.o
|
|
|
|
|
endif
|
2020-10-15 23:54:18 +02:00
|
|
|
|
2023-02-11 22:17:41 +01:00
|
|
|
ifeq ($(PCI_DUMMY), y)
|
|
|
|
|
OPTS += -DUSE_PCI_DUMMY
|
|
|
|
|
DEVBROBJ += pci_dummy.o
|
|
|
|
|
endif
|
|
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(SIO_DETECT), y)
|
|
|
|
|
OPTS += -DUSE_SIO_DETECT
|
|
|
|
|
DEVBROBJ += sio_detect.o
|
|
|
|
|
endif
|
2018-04-25 23:51:13 +02:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(VGAWONDER), y)
|
|
|
|
|
OPTS += -DUSE_VGAWONDER
|
|
|
|
|
endif
|
2018-02-18 13:43:49 +01:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(XL24), y)
|
|
|
|
|
OPTS += -DUSE_XL24
|
|
|
|
|
endif
|
2021-02-11 19:07:24 +01:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(OLIVETTI), y)
|
|
|
|
|
OPTS += -DUSE_OLIVETTI
|
|
|
|
|
DEVBROBJ += olivetti_eva.o
|
|
|
|
|
endif
|
2021-02-11 19:07:24 +01:00
|
|
|
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(GDBSTUB), y)
|
|
|
|
|
OPTS += -DUSE_GDBSTUB
|
|
|
|
|
DEVBROBJ += gdbstub.o
|
|
|
|
|
endif
|
2017-07-30 23:21:11 -05:00
|
|
|
endif
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2022-12-22 06:46:52 +01:00
|
|
|
ifeq ($(RTMIDI), y)
|
|
|
|
|
OPTS += -DUSE_RTMIDI
|
|
|
|
|
endif
|
|
|
|
|
|
2017-09-25 04:31:20 -04:00
|
|
|
|
2017-11-18 21:28:26 -05:00
|
|
|
# Final versions of the toolchain flags.
|
2022-11-15 12:48:58 -05:00
|
|
|
CFLAGS := $(OPTS) $(DFLAGS) $(COPTIM) $(AOPTIM) \
|
|
|
|
|
$(AFLAGS) -fomit-frame-pointer -mstackrealign -Wall \
|
|
|
|
|
-fno-strict-aliasing
|
2019-09-03 08:33:05 +01:00
|
|
|
|
|
|
|
|
# Add freetyp2 references through pkgconfig
|
2022-11-15 12:48:58 -05:00
|
|
|
CFLAGS := $(CFLAGS) `pkg-config --cflags freetype2`
|
2019-09-03 08:33:05 +01:00
|
|
|
|
2023-07-27 02:33:40 +02:00
|
|
|
CXXFLAGS := $(OPTS) $(DFLAGS) $(CXXOPTIM) $(AOPTIM) \
|
|
|
|
|
$(AFLAGS) -fomit-frame-pointer -mstackrealign -Wall \
|
|
|
|
|
-fno-strict-aliasing
|
2017-11-18 21:28:26 -05:00
|
|
|
|
2022-11-17 22:44:06 +01:00
|
|
|
CFLAGS += -Werror=implicit-int -Werror=implicit-function-declaration \
|
|
|
|
|
-Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition
|
|
|
|
|
|
2017-11-18 21:28:26 -05:00
|
|
|
|
|
|
|
|
#########################################################################
|
2022-11-15 12:48:58 -05:00
|
|
|
# Create the (final) list of objects to build. #
|
2017-11-18 21:28:26 -05:00
|
|
|
#########################################################################
|
2022-11-15 12:48:58 -05:00
|
|
|
MAINOBJ := 86box.o config.o log.o random.o timer.o io.o acpi.o apm.o dma.o ddma.o \
|
2023-08-18 05:57:32 +02:00
|
|
|
nmi.o pic.o pit.o pit_fast.o port_6x.o port_92.o ppi.o pci.o mca.o fifo.o \
|
|
|
|
|
fifo8.o usb.o device.o nvr.o nvr_at.o nvr_ps2.o machine_status.o ini.o \
|
2022-11-15 12:48:58 -05:00
|
|
|
$(VNCOBJ)
|
|
|
|
|
|
2023-08-08 19:39:52 +02:00
|
|
|
MEMOBJ := catalyst_flash.o i2c_eeprom.o intel_flash.o mem.o mmu_2386.o rom.o row.o \
|
|
|
|
|
smram.o spd.o sst_flash.o
|
2022-11-15 12:48:58 -05:00
|
|
|
|
|
|
|
|
CPUOBJ := $(DYNARECOBJ) \
|
|
|
|
|
$(CGTOBJ) \
|
|
|
|
|
cpu.o cpu_table.o fpu.o x86.o \
|
|
|
|
|
8080.o 808x.o 386.o 386_common.o 386_dynarec.o 386_dynarec_ops.o \
|
2023-08-21 02:57:41 +02:00
|
|
|
x86_ops_mmx.o x86seg_common.o x86seg_2386.o x86seg.o x87.o x87_timings.o \
|
2023-05-01 02:42:47 +02:00
|
|
|
f2xm1.o fpatan.o fprem.o fsincos.o fyl2x.o softfloat_poly.o softfloat.o softfloat16.o \
|
2023-04-29 18:56:57 +02:00
|
|
|
softfloat-muladd.o softfloat-round-pack.o softfloat-specialize.o softfloatx80.o
|
2022-11-15 12:48:58 -05:00
|
|
|
|
|
|
|
|
CHIPSETOBJ := 82c100.o acc2168.o \
|
2023-08-14 05:00:56 +02:00
|
|
|
compaq_386.o \
|
2022-11-15 12:48:58 -05:00
|
|
|
contaq_82c59x.o \
|
|
|
|
|
cs4031.o cs8230.o \
|
2023-01-09 19:08:19 -05:00
|
|
|
ali1429.o ali1435.o ali1489.o ali1531.o ali1541.o ali1543.o ali1621.o ali6117.o \
|
2022-11-15 12:48:58 -05:00
|
|
|
gc100.o headland.o \
|
|
|
|
|
ims8848.o intel_82335.o intel_420ex.o intel_4x0.o intel_i450kx.o intel_sio.o intel_piix.o \
|
|
|
|
|
ioapic.o \
|
|
|
|
|
neat.o \
|
2023-08-15 06:45:02 +02:00
|
|
|
opti283.o opti291.o opti391.o opti495.o opti602.o opti822.o opti895.o opti5x7.o \
|
2022-11-15 12:48:58 -05:00
|
|
|
scamp.o scat.o \
|
|
|
|
|
stpc.o \
|
|
|
|
|
wd76c10.o vl82c480.o \
|
|
|
|
|
umc_8886.o umc_hb4.o \
|
|
|
|
|
via_vt82c49x.o via_vt82c505.o via_apollo.o via_pipc.o \
|
|
|
|
|
sis_85c310.o sis_85c4xx.o sis_85c496.o sis_85c50x.o sis_5511.o sis_5571.o
|
|
|
|
|
|
|
|
|
|
MCHOBJ := machine.o machine_table.o \
|
|
|
|
|
m_xt.o m_xt_compaq.o \
|
|
|
|
|
m_xt_philips.o \
|
|
|
|
|
m_xt_t1000.o m_xt_t1000_vid.o \
|
|
|
|
|
m_xt_xi8088.o m_xt_zenith.o \
|
|
|
|
|
m_pcjr.o \
|
|
|
|
|
m_amstrad.o m_europc.o \
|
|
|
|
|
m_elt.o \
|
|
|
|
|
m_xt_olivetti.o m_tandy.o m_v86p.o \
|
|
|
|
|
m_at.o m_at_commodore.o \
|
|
|
|
|
m_at_t3100e.o m_at_t3100e_vid.o \
|
|
|
|
|
m_ps1.o m_ps1_hdc.o \
|
|
|
|
|
m_ps2_isa.o m_ps2_mca.o \
|
|
|
|
|
m_at_compaq.o \
|
|
|
|
|
m_at_286_386sx.o m_at_386dx_486.o \
|
|
|
|
|
m_at_socket4.o m_at_socket5.o m_at_socket7_3v.o m_at_socket7.o m_at_sockets7.o \
|
|
|
|
|
m_at_socket8.o m_at_slot1.o m_at_slot2.o m_at_socket370.o \
|
|
|
|
|
m_at_misc.o
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
|
2023-04-19 23:34:32 +02:00
|
|
|
KBCOBJ := kbc_at.o kbc_at_dev.o \
|
|
|
|
|
keyboard_at.o
|
2022-11-15 20:31:55 -05:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
DEVOBJ := bugger.o cartridge.o cassette.o hasp.o hwm.o hwm_lm75.o hwm_lm78.o hwm_gl518sm.o hwm_vt82c686.o \
|
|
|
|
|
ibm_5161.o isamem.o isartc.o lpt.o pci_bridge.o postcard.o serial.o \
|
|
|
|
|
clock_ics9xxx.o isapnp.o \
|
|
|
|
|
i2c.o i2c_gpio.o smbus_ali7101.o smbus_piix4.o \
|
|
|
|
|
keyboard.o \
|
2022-11-15 20:31:55 -05:00
|
|
|
keyboard_xt.o $(KBCOBJ) \
|
2022-11-15 12:48:58 -05:00
|
|
|
mouse.o \
|
|
|
|
|
mouse_bus.o \
|
|
|
|
|
mouse_serial.o mouse_ps2.o \
|
2023-01-03 15:42:57 +06:00
|
|
|
mouse_wacom_tablet.o \
|
2023-02-14 20:37:58 -05:00
|
|
|
phoenix_486_jumper.o serial_passthrough.o
|
2022-11-15 12:48:58 -05:00
|
|
|
|
|
|
|
|
SIOOBJ := sio_acc3221.o sio_ali5123.o \
|
|
|
|
|
sio_f82c710.o sio_82091aa.o sio_fdc37c6xx.o \
|
|
|
|
|
sio_fdc37c67x.o sio_fdc37c669.o sio_fdc37c93x.o sio_fdc37m60x.o \
|
2023-10-23 15:50:19 -03:00
|
|
|
sio_it86x1f.o \
|
2022-11-15 12:48:58 -05:00
|
|
|
sio_pc87306.o sio_pc87307.o sio_pc87309.o sio_pc87310.o sio_pc87311.o sio_pc87332.o \
|
|
|
|
|
sio_prime3b.o sio_prime3c.o \
|
|
|
|
|
sio_w83787f.o \
|
|
|
|
|
sio_w83877f.o sio_w83977f.o \
|
|
|
|
|
sio_um8669f.o \
|
|
|
|
|
sio_vt82c686.o
|
|
|
|
|
|
2022-12-20 21:23:55 -05:00
|
|
|
FDDOBJ := fdd.o fdc.o fdc_magitronic.o fdc_monster.o fdc_pii15xb.o \
|
2022-11-15 12:48:58 -05:00
|
|
|
fdi2raw.o \
|
|
|
|
|
fdd_common.o fdd_86f.o \
|
|
|
|
|
fdd_fdi.o fdd_imd.o fdd_img.o fdd_json.o \
|
|
|
|
|
fdd_mfm.o fdd_td0.o
|
|
|
|
|
|
|
|
|
|
GAMEOBJ := gameport.o \
|
|
|
|
|
joystick_standard.o joystick_ch_flightstick_pro.o \
|
|
|
|
|
joystick_sw_pad.o joystick_tm_fcs.o
|
|
|
|
|
|
|
|
|
|
HDDOBJ := hdd.o \
|
|
|
|
|
hdd_image.o hdd_table.o \
|
|
|
|
|
hdc.o \
|
|
|
|
|
hdc_st506_xt.o hdc_st506_at.o \
|
|
|
|
|
hdc_xta.o \
|
|
|
|
|
hdc_esdi_at.o hdc_esdi_mca.o \
|
|
|
|
|
hdc_xtide.o hdc_ide.o \
|
|
|
|
|
hdc_ide_opti611.o \
|
|
|
|
|
hdc_ide_cmd640.o hdc_ide_cmd646.o \
|
|
|
|
|
hdc_ide_sff8038i.o
|
2021-03-25 03:08:50 -05:00
|
|
|
|
2023-04-11 19:00:14 -04:00
|
|
|
MINIVHDOBJ := cwalk.o xml2_encoding.o convert.o \
|
|
|
|
|
create.o minivhd_io.o manage.o struct_rw.o minivhd_util.o
|
2022-11-15 12:48:58 -05:00
|
|
|
|
|
|
|
|
CDROMOBJ := cdrom.o \
|
|
|
|
|
cdrom_image_backend.o cdrom_image_viso.o cdrom_image.o cdrom_mitsumi.o
|
|
|
|
|
|
|
|
|
|
ZIPOBJ := zip.o
|
|
|
|
|
|
|
|
|
|
MOOBJ := mo.o
|
|
|
|
|
|
|
|
|
|
SCSIOBJ := scsi.o scsi_device.o \
|
|
|
|
|
scsi_cdrom.o scsi_disk.o \
|
|
|
|
|
scsi_x54x.o \
|
|
|
|
|
scsi_aha154x.o scsi_buslogic.o \
|
|
|
|
|
scsi_ncr5380.o scsi_ncr53c8xx.o \
|
|
|
|
|
scsi_pcscsi.o scsi_spock.o
|
|
|
|
|
|
|
|
|
|
NETOBJ := network.o \
|
|
|
|
|
net_pcap.o \
|
2023-07-12 00:48:13 +02:00
|
|
|
net_slirp.o \
|
2022-11-21 17:08:50 +01:00
|
|
|
net_dp8390.o net_3c501.o \
|
2022-11-15 12:48:58 -05:00
|
|
|
net_3c503.o net_ne2000.o \
|
|
|
|
|
net_pcnet.o net_wd8003.o \
|
2023-05-16 00:53:59 +02:00
|
|
|
net_plip.o net_event.o \
|
2023-07-31 17:45:20 -04:00
|
|
|
net_null.o \
|
2023-08-06 19:39:33 -04:00
|
|
|
net_eeprom_nmc93cxx.o \
|
|
|
|
|
net_tulip.o \
|
|
|
|
|
net_rtl8139.o \
|
|
|
|
|
net_l80225.o
|
2022-11-15 12:48:58 -05:00
|
|
|
|
|
|
|
|
PRINTOBJ := png.o prt_cpmap.o \
|
|
|
|
|
prt_escp.o prt_text.o prt_ps.o
|
|
|
|
|
|
|
|
|
|
SNDOBJ := sound.o \
|
|
|
|
|
snd_opl.o snd_opl_nuked.o snd_opl_ymfm.o \
|
|
|
|
|
ymfm_adpcm.o ymfm_misc.o ymfm_opl.o ymfm_opm.o \
|
|
|
|
|
ymfm_opn.o ymfm_opq.o ymfm_opz.o ymfm_pcm.o ymfm_ssg.o \
|
|
|
|
|
snd_resid.o \
|
|
|
|
|
convolve.o convolve-sse.o envelope.o extfilt.o \
|
|
|
|
|
filter.o pot.o sid.o voice.o wave6581__ST.o \
|
|
|
|
|
wave6581_P_T.o wave6581_PS_.o wave6581_PST.o \
|
|
|
|
|
wave8580__ST.o wave8580_P_T.o wave8580_PS_.o \
|
|
|
|
|
wave8580_PST.o wave.o \
|
|
|
|
|
midi.o \
|
2023-11-12 23:55:00 -05:00
|
|
|
midi_opl4.o \
|
|
|
|
|
midi_opl4_yrw801.o \
|
2022-11-15 12:48:58 -05:00
|
|
|
snd_speaker.o \
|
|
|
|
|
snd_pssj.o \
|
|
|
|
|
snd_ps1.o \
|
|
|
|
|
snd_lpt_dac.o snd_lpt_dss.o \
|
|
|
|
|
snd_adlib.o snd_adlibgold.o snd_ad1848.o snd_audiopci.o \
|
|
|
|
|
snd_ac97_codec.o snd_ac97_via.o \
|
2022-11-17 22:44:06 +01:00
|
|
|
snd_azt2316a.o snd_cs423x.o \
|
|
|
|
|
snd_optimc.o snd_cmi8x38.o \
|
2022-11-15 12:48:58 -05:00
|
|
|
snd_cms.o \
|
|
|
|
|
snd_gus.o \
|
|
|
|
|
snd_sb.o snd_sb_dsp.o \
|
|
|
|
|
snd_emu8k.o snd_mpu401.o \
|
|
|
|
|
snd_sn76489.o snd_ssi2001.o \
|
|
|
|
|
snd_wss.o \
|
2022-11-17 22:44:06 +01:00
|
|
|
snd_ym7128.o
|
2022-11-15 12:48:58 -05:00
|
|
|
|
|
|
|
|
VIDOBJ := agpgart.o video.o \
|
|
|
|
|
vid_table.o \
|
|
|
|
|
vid_cga.o vid_cga_comp.o \
|
|
|
|
|
vid_compaq_cga.o \
|
|
|
|
|
vid_mda.o \
|
|
|
|
|
vid_hercules.o vid_herculesplus.o vid_incolor.o \
|
|
|
|
|
vid_colorplus.o \
|
|
|
|
|
vid_genius.o \
|
|
|
|
|
vid_pgc.o vid_im1024.o \
|
|
|
|
|
vid_sigma.o \
|
|
|
|
|
vid_wy700.o \
|
|
|
|
|
vid_ega.o vid_ega_render.o \
|
|
|
|
|
vid_svga.o vid_svga_render.o \
|
|
|
|
|
vid_8514a.o \
|
|
|
|
|
vid_ddc.o \
|
|
|
|
|
vid_vga.o \
|
|
|
|
|
vid_ati_eeprom.o \
|
|
|
|
|
vid_ati18800.o vid_ati28800.o \
|
2023-07-14 23:38:04 +02:00
|
|
|
vid_ati_mach8.o \
|
Video changes:
1. The passthrough from VGA to 8514/A and/or 8514/A to VGA no longer relies on hackish places where to switch from/to, instead, relying on port 0x3c3 of VGA doing so (though the Mach8/32 still needs some places where to manually switch from/to, mainly the MCA one when configuring the EEPROM).
2. Implemented the MCA behalf of the Mach32 and its corresponding reset function.
3. Properly implemented (more or less) true color, including 24-bit BGR rendering
4. Other fixes such as color patterns and mono patterns being more correct than before in various operating systems and in 24-bit true color.
5. Implemented the onboard Mach32 video of the IBM PS/ValuePoint P60 machine.
6. Made the onboard internal video detect when it's 8514/A compatible or not (CGA/EGA/MDA/VGA/etc.). If the former is selected, then the video monitor flag is used instead (for QT).
7. The TGUI9400 and 9440, if on VLB, now detect the right amount of memory if on 2MB.
8. Initial implementation of the ATI 68875 ramdac used by the Mach32 and made the ATI 68860 8514/A aware when selected with the Mach32AX PCI.
9. Separated the 8514/A ramdac ports from the VGA ramdac ports, allowing seamless transition from/to 8514/A/VGA.
10. Fixed a hdisp problem in the ET4000/W32 cards, where it was doubling the horizontal display in 15bpp+ graphics mode.
11. Removed the 0x3da/0x3ba port hack that was on the Mach8/32 code, relying on the (S)VGA core instead.
12. Reworked and simplified the TGUI9440 pitch register based on logging due to no documentation at all.
2023-08-12 00:00:46 +02:00
|
|
|
vid_ati68875_ramdac.o \
|
2022-11-15 12:48:58 -05:00
|
|
|
vid_ati_mach64.o vid_ati68860_ramdac.o \
|
|
|
|
|
vid_bt48x_ramdac.o \
|
|
|
|
|
vid_av9194.o vid_icd2061.o vid_ics2494.o vid_ics2595.o \
|
|
|
|
|
vid_cl54xx.o \
|
|
|
|
|
vid_et3000.o \
|
|
|
|
|
vid_et4000.o vid_sc1148x_ramdac.o \
|
|
|
|
|
vid_sc1502x_ramdac.o \
|
|
|
|
|
vid_et4000w32.o vid_stg_ramdac.o \
|
|
|
|
|
vid_ht216.o \
|
|
|
|
|
vid_oak_oti.o \
|
|
|
|
|
vid_paradise.o \
|
|
|
|
|
vid_rtg310x.o \
|
|
|
|
|
vid_ti_cf62011.o \
|
|
|
|
|
vid_f82c425.o \
|
|
|
|
|
vid_tvga.o \
|
|
|
|
|
vid_tgui9440.o vid_tkd8001_ramdac.o \
|
|
|
|
|
vid_att20c49x_ramdac.o \
|
|
|
|
|
vid_att2xc498_ramdac.o \
|
|
|
|
|
vid_s3.o vid_s3_virge.o \
|
|
|
|
|
vid_ibm_rgb528_ramdac.o vid_sdac_ramdac.o \
|
|
|
|
|
vid_ogc.o \
|
2023-12-16 14:35:52 -05:00
|
|
|
vid_mga.o \
|
2022-11-15 12:48:58 -05:00
|
|
|
vid_nga.o \
|
|
|
|
|
vid_tvp3026_ramdac.o \
|
|
|
|
|
vid_xga.o
|
|
|
|
|
|
|
|
|
|
VOODOOOBJ := vid_voodoo.o vid_voodoo_banshee.o \
|
|
|
|
|
vid_voodoo_banshee_blitter.o \
|
|
|
|
|
vid_voodoo_blitter.o \
|
|
|
|
|
vid_voodoo_display.o vid_voodoo_fb.o \
|
|
|
|
|
vid_voodoo_fifo.o vid_voodoo_reg.o \
|
|
|
|
|
vid_voodoo_render.o vid_voodoo_setup.o \
|
|
|
|
|
vid_voodoo_texture.o
|
|
|
|
|
|
|
|
|
|
PLATOBJ := win.o \
|
|
|
|
|
win_dynld.o \
|
|
|
|
|
win_cdrom.o win_keyboard.o \
|
2023-02-14 20:37:58 -05:00
|
|
|
win_mouse.o win_serial_passthrough.o
|
2022-11-15 12:48:58 -05:00
|
|
|
|
|
|
|
|
UIOBJ := win_ui.o win_icon.o win_stbar.o discord.o \
|
|
|
|
|
win_sdl.o win_opengl.o win_opengl_glslp.o glad.o \
|
|
|
|
|
win_dialog.o win_about.o \
|
|
|
|
|
win_settings.o win_devconf.o win_snd_gain.o win_specify_dim.o win_preferences.o \
|
|
|
|
|
win_new_floppy.o win_jsconf.o \
|
|
|
|
|
win_media_menu.o win_toolbar.o
|
2021-11-29 15:42:50 +01:00
|
|
|
|
2020-02-05 08:07:09 +08:00
|
|
|
ifeq ($(DINPUT), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
PLATOBJ += win_joystick.o
|
2020-02-05 08:07:09 +08:00
|
|
|
else
|
2022-11-15 12:48:58 -05:00
|
|
|
PLATOBJ += win_joystick_rawinput.o
|
2020-02-05 08:07:09 +08:00
|
|
|
endif
|
2022-02-20 00:48:39 +01:00
|
|
|
|
|
|
|
|
ifeq ($(OPENAL), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
SNDOBJ += openal.o
|
2022-02-20 00:48:39 +01:00
|
|
|
else
|
2022-11-15 12:48:58 -05:00
|
|
|
SNDOBJ += xaudio2.o
|
2022-02-20 00:48:39 +01:00
|
|
|
endif
|
2017-09-25 20:46:14 -04:00
|
|
|
|
2022-12-22 06:33:15 +01:00
|
|
|
ifeq ($(RTMIDI), y)
|
|
|
|
|
SNDOBJ += midi_rtmidi.o
|
|
|
|
|
endif
|
|
|
|
|
|
2023-10-13 13:10:05 -04:00
|
|
|
OBJ := $(MAINOBJ) $(CPUOBJ) $(CHIPSETOBJ) $(MCHOBJ) $(DEVOBJ) $(MEMOBJ) \
|
2022-11-15 12:48:58 -05:00
|
|
|
$(FDDOBJ) $(GAMEOBJ) $(CDROMOBJ) $(ZIPOBJ) $(MOOBJ) $(HDDOBJ) $(MINIVHDOBJ) \
|
|
|
|
|
$(NETOBJ) $(PRINTOBJ) $(SCSIOBJ) $(SIOOBJ) $(SNDOBJ) $(VIDOBJ) $(VOODOOOBJ) \
|
|
|
|
|
$(PLATOBJ) $(UIOBJ) $(FSYNTHOBJ) $(MUNTOBJ) $(DEVBROBJ) $(MINITRACEOBJ) $(THREADOBJ)
|
2017-09-04 01:52:29 -04:00
|
|
|
ifdef EXOBJ
|
2022-11-15 14:02:57 -05:00
|
|
|
OBJ += $(EXOBJ)
|
2017-09-04 01:52:29 -04:00
|
|
|
endif
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2023-02-11 23:58:43 +01:00
|
|
|
ifeq ($(LOG), y)
|
|
|
|
|
MWIN := -lcomdlg32
|
|
|
|
|
else
|
|
|
|
|
MWIN := -mwindows
|
|
|
|
|
endif
|
|
|
|
|
|
2023-07-16 04:21:21 +02:00
|
|
|
LIBS := -lfreetype -lfluidsynth -lslirp -lbz2 -lharfbuzz -lgraphite2 -lbrotlidec \
|
|
|
|
|
-lbrotlicommon -lusp10 -lrpcrt4 -lgomp -lsndfile -lflac -lmp3lame -lmpg123 \
|
|
|
|
|
-lopus -lvorbis -lvorbisenc -logg -ldsound -lshlwapi -lksuser -lreadline \
|
|
|
|
|
-ltermcap -lportaudio -lgmodule-2.0 -lglib-2.0 -lintl -liconv
|
2023-07-12 00:48:13 +02:00
|
|
|
|
2022-06-25 15:37:41 +02:00
|
|
|
ifeq ($(OPENAL), y)
|
2023-07-16 04:21:21 +02:00
|
|
|
LIBS += $(MWIN) -lopenal -lcomctl32 -lSDL2 -limagehlp -ldinput8 -ldxguid -ldxerr8 \
|
|
|
|
|
-luser32 -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lshell32 -lversion \
|
|
|
|
|
-luuid -lws2_32
|
2022-06-25 15:37:41 +02:00
|
|
|
else
|
2022-11-15 14:02:57 -05:00
|
|
|
ifeq ($(FAUDIO), y)
|
2023-07-16 04:21:21 +02:00
|
|
|
LIBS += $(MWIN) -lfaudio -lcomctl32 -lSDL2 -limagehlp -ldinput8 -ldxguid -ldxerr8 \
|
|
|
|
|
-luser32 -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lshell32 -lversion \
|
|
|
|
|
-luuid -lws2_32
|
2022-11-15 14:02:57 -05:00
|
|
|
else
|
2023-07-16 04:21:21 +02:00
|
|
|
LIBS += $(MWIN) -lcomctl32 -lSDL2 -limagehlp -ldinput8 -ldxguid -ldxerr8 -luser32 \
|
|
|
|
|
-lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lshell32 -lversion -luuid \
|
|
|
|
|
-lws2_32
|
2022-11-15 14:02:57 -05:00
|
|
|
endif
|
2022-07-12 21:09:21 +02:00
|
|
|
endif
|
2022-03-11 21:19:59 +01:00
|
|
|
|
|
|
|
|
ifeq ($(RTMIDI), y)
|
2023-07-27 02:33:40 +02:00
|
|
|
ifeq ($(CLANG), y)
|
|
|
|
|
LIBS += -lrtmidi.dll -lwinmm
|
|
|
|
|
else
|
|
|
|
|
LIBS += -lrtmidi -lwinmm
|
|
|
|
|
endif
|
2022-03-11 21:19:59 +01:00
|
|
|
endif
|
2019-09-03 08:58:35 +01:00
|
|
|
|
2020-04-18 11:51:54 +02:00
|
|
|
ifeq ($(VNC), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
LIBS += $(VNCLIB) -lws2_32
|
2020-04-18 11:51:54 +02:00
|
|
|
endif
|
2023-07-27 02:33:40 +02:00
|
|
|
ifeq ($(CLANG), y)
|
|
|
|
|
LIBS += -lpng -lz -lwsock32 -liphlpapi -lpsapi -lhid -lsetupapi -luxtheme -static -lstdc++.dll
|
|
|
|
|
else
|
|
|
|
|
LIBS += -lpng -lz -lwsock32 -liphlpapi -lpsapi -lhid -lsetupapi -luxtheme -static -lstdc++
|
|
|
|
|
endif
|
2017-12-13 22:39:41 +01:00
|
|
|
ifneq ($(X64), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
ifneq ($(ARM64), y)
|
|
|
|
|
LIBS += -Wl,--large-address-aware
|
|
|
|
|
endif
|
2021-08-27 13:49:27 +02:00
|
|
|
endif
|
|
|
|
|
ifeq ($(ARM64), y)
|
2022-11-15 14:02:57 -05:00
|
|
|
LIBS += -lgcc
|
2021-08-27 13:49:27 +02:00
|
|
|
endif
|
2020-02-05 08:07:09 +08:00
|
|
|
ifeq ($(DINPUT), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
LIBS += -ldinput8
|
2019-03-20 07:41:46 +08:00
|
|
|
endif
|
2017-09-25 20:46:14 -04:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
LIBS += -static
|
2019-09-03 08:58:35 +01:00
|
|
|
|
2017-09-25 20:46:14 -04:00
|
|
|
# Build module rules.
|
|
|
|
|
ifeq ($(AUTODEP), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
%.o: %.c
|
|
|
|
|
@echo $<
|
|
|
|
|
@$(CC) $(CFLAGS) $(DEPS) -c $<
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
%.o: %.cc
|
|
|
|
|
@echo $<
|
|
|
|
|
@$(CPP) $(CXXFLAGS) $(DEPS) -c $<
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
%.o: %.cpp
|
|
|
|
|
@echo $<
|
|
|
|
|
@$(CPP) $(CXXFLAGS) $(DEPS) -c $<
|
2017-09-25 20:46:14 -04:00
|
|
|
else
|
2022-11-15 12:48:58 -05:00
|
|
|
%.o: %.c
|
|
|
|
|
@echo $<
|
|
|
|
|
@$(CC) $(CFLAGS) -c $<
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
%.o: %.cc
|
|
|
|
|
@echo $<
|
|
|
|
|
@$(CPP) $(CXXFLAGS) -c $<
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
%.o: %.cpp
|
|
|
|
|
@echo $<
|
|
|
|
|
@$(CPP) $(CXXFLAGS) -c $<
|
2017-09-25 20:46:14 -04:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
%.d: %.c $(wildcard $*.d)
|
|
|
|
|
@echo $<
|
|
|
|
|
@$(CC) $(CFLAGS) $(DEPS) -E $< >/dev/null
|
2017-09-25 20:46:14 -04:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
%.d: %.cc $(wildcard $*.d)
|
|
|
|
|
@echo $<
|
|
|
|
|
@$(CPP) $(CXXFLAGS) $(DEPS) -E $< >/dev/null
|
2017-09-25 20:46:14 -04:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
%.d: %.cpp $(wildcard $*.d)
|
|
|
|
|
@echo $<
|
|
|
|
|
@$(CPP) $(CXXFLAGS) $(DEPS) -E $< >/dev/null
|
2017-09-25 20:46:14 -04:00
|
|
|
endif
|
|
|
|
|
|
2021-06-18 09:01:57 +05:00
|
|
|
# Suppress false positive warnings in vid_voodoo_codegen_x86[-64].h
|
|
|
|
|
# that cause ~3000 lines to be output into the logs each time.
|
2021-08-29 13:59:05 +02:00
|
|
|
ifneq ($(CLANG), y)
|
|
|
|
|
$(VOODOOOBJ): CFLAGS += -Wstringop-overflow=0
|
|
|
|
|
endif
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
all: $(PROG).exe
|
2017-05-08 18:27:42 -04:00
|
|
|
|
|
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
86Box.res: 86Box.rc
|
|
|
|
|
@echo Processing $<
|
2023-05-02 01:59:06 -04:00
|
|
|
@$(WINDRES) -v $(RFLAGS) $(EXTRAS) -i $< -o 86Box.res
|
2017-09-25 20:46:14 -04:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
$(PROG).exe: $(OBJ) 86Box.res
|
|
|
|
|
@echo Linking $(PROG).exe ..
|
|
|
|
|
@$(CC) $(LDFLAGS) -o $(PROG).exe $(OBJ) 86Box.res $(LIBS) -pipe
|
2021-04-10 07:18:47 +02:00
|
|
|
ifneq ($(DEBUG), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
@$(STRIP) $(PROG).exe
|
2021-04-10 07:18:47 +02:00
|
|
|
endif
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
pcap_if.res: pcap_if.rc
|
|
|
|
|
@echo Processing $<
|
|
|
|
|
@$(WINDRES) $(RFLAGS) -i $< -o pcap_if.res
|
2017-09-25 20:46:14 -04:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
pcap_if.exe: pcap_if.o win_dynld.o pcap_if.res
|
|
|
|
|
@echo Linking pcap_if.exe ..
|
|
|
|
|
@$(CC) $(LDFLAGS) -o pcap_if.exe pcap_if.o win_dynld.o pcap_if.res
|
2020-06-13 12:32:09 +02:00
|
|
|
ifneq ($(DEBUG), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
@$(STRIP) pcap_if.exe
|
2017-05-05 01:49:42 +02:00
|
|
|
endif
|
|
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
hello.exe: hello.o
|
|
|
|
|
$(CXX) $(LDFLAGS) -o hello.exe hello.o $(LIBS)
|
2017-11-18 21:28:26 -05:00
|
|
|
ifneq ($(DEBUG), y)
|
2022-11-15 12:48:58 -05:00
|
|
|
@$(STRIP) hello.exe
|
2017-11-18 21:28:26 -05:00
|
|
|
endif
|
|
|
|
|
|
2017-05-08 18:27:42 -04:00
|
|
|
|
2017-05-05 01:49:42 +02:00
|
|
|
clean:
|
2022-11-15 12:48:58 -05:00
|
|
|
@echo Cleaning objects..
|
|
|
|
|
@-rm -f *.o 2>/dev/null
|
|
|
|
|
@-rm -f *.res 2>/dev/null
|
2017-09-04 01:52:29 -04:00
|
|
|
|
2022-11-15 12:48:58 -05:00
|
|
|
clobber: clean
|
|
|
|
|
@echo Cleaning executables..
|
|
|
|
|
@-rm -f *.d 2>/dev/null
|
|
|
|
|
@-rm -f *.exe 2>/dev/null
|
|
|
|
|
# @-rm -f $(DEPFILE) 2>/dev/null
|
2017-09-04 01:52:29 -04:00
|
|
|
|
2017-09-25 20:46:14 -04:00
|
|
|
ifneq ($(AUTODEP), y)
|
|
|
|
|
depclean:
|
2022-11-15 12:48:58 -05:00
|
|
|
@-rm -f $(DEPFILE) 2>/dev/null
|
|
|
|
|
@echo Creating dependencies..
|
|
|
|
|
@echo # Run "make depends" to re-create this file. >$(DEPFILE)
|
|
|
|
|
|
|
|
|
|
depends: DEPOBJ=$(OBJ:%.o=%.d)
|
|
|
|
|
depends: depclean $(OBJ:%.o=%.d)
|
|
|
|
|
@-cat $(DEPOBJ) >>$(DEPFILE)
|
|
|
|
|
@-rm -f $(DEPOBJ)
|
2017-08-08 16:14:50 +02:00
|
|
|
|
2017-10-14 20:04:21 -04:00
|
|
|
$(DEPFILE):
|
2017-09-25 20:46:14 -04:00
|
|
|
endif
|
2017-08-08 16:14:50 +02:00
|
|
|
|
|
|
|
|
|
2017-09-25 20:46:14 -04:00
|
|
|
# Module dependencies.
|
|
|
|
|
ifeq ($(AUTODEP), y)
|
|
|
|
|
#-include $(OBJ:%.o=%.d) (better, but sloooowwwww)
|
|
|
|
|
-include *.d
|
|
|
|
|
else
|
2017-10-14 20:04:21 -04:00
|
|
|
include $(wildcard $(DEPFILE))
|
2017-09-25 20:46:14 -04:00
|
|
|
endif
|
2017-08-08 16:14:50 +02:00
|
|
|
|
2017-06-15 03:10:31 -04:00
|
|
|
|
2017-05-05 01:49:42 +02:00
|
|
|
# End of Makefile.mingw.
|