2017-05-24 00:27:42 -04: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.
|
|
|
|
|
#
|
|
|
|
|
# This file is part of the 86Box distribution.
|
|
|
|
|
#
|
|
|
|
|
# Prefix for localizing the general Makefile.mingw for local
|
|
|
|
|
# settings, so we can avoid changing the main one for all of
|
|
|
|
|
# our local setups.
|
|
|
|
|
#
|
2017-12-18 00:25:54 -05:00
|
|
|
# Version: @(#)Makefile.local 1.0.8 2017/12/15
|
2017-05-24 00:27:42 -04:00
|
|
|
#
|
|
|
|
|
# Author: Fred N. van Kempen, <decwiz@yahoo.com>
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
# Anything here will override defaults in Makefile.MinGW. #
|
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Name of the executable.
|
2017-12-04 11:59:26 -05:00
|
|
|
#PROG := yourexe
|
2017-05-24 00:27:42 -04:00
|
|
|
|
2017-10-19 21:08:34 -04:00
|
|
|
|
2017-05-24 00:27:42 -04:00
|
|
|
# Various compile-time options.
|
2017-10-19 21:08:34 -04:00
|
|
|
# -DROM_TRACE=0xc800 traces ROM access from segment C800
|
|
|
|
|
# -DIO_TRACE=0x66 traces I/O on port 0x66
|
2017-12-18 00:25:54 -05:00
|
|
|
# -DIO_CATCH enables I/O range catch logs
|
2017-10-19 21:08:34 -04:00
|
|
|
STUFF :=
|
|
|
|
|
|
|
|
|
|
# Add feature selections here.
|
|
|
|
|
# -DANSI_CFG forces the config file to ANSI encoding.
|
|
|
|
|
# -DENABLE_VRAM_DUMP enables Video Ram dumping.
|
|
|
|
|
# -DENABLE_LOG_BREAKPOINT enables extra logging.
|
|
|
|
|
# -DENABLE_KEYBOARD_AMSTRAD_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_KEYBOARD_AT_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_KEYBOARD_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_PCI_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_CDROM_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_HDD_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_IDE_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_FDC_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_D86F_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_NIC_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SCSI_BUS_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SCSI_DISK_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_X54X_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_AHA154X_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_BUSLOGIC_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_NCR5380_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_AUDIOPCI_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_EMU8K_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_VRAM_DUMP=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SERIAL_LOG=N sets logging level at N.
|
|
|
|
|
EXTRAS :=
|
|
|
|
|
|
2017-05-24 00:27:42 -04:00
|
|
|
|
2017-10-19 21:08:34 -04:00
|
|
|
AUTODEP := n
|
2017-11-13 02:06:00 -05:00
|
|
|
CRASHDUMP := n
|
2017-10-19 21:08:34 -04:00
|
|
|
DEBUG := n
|
|
|
|
|
OPTIM := n
|
|
|
|
|
X64 := n
|
|
|
|
|
RELEASE := n
|
|
|
|
|
USB := n
|
|
|
|
|
VNC := n
|
|
|
|
|
RDP := n
|
|
|
|
|
DEV_BUILD := n
|
|
|
|
|
DEV_BRANCH := n
|
|
|
|
|
CIRRUS := n
|
|
|
|
|
NE1000 := n
|
|
|
|
|
NV_RIVA := n
|
2017-10-27 04:54:45 -04:00
|
|
|
OPENAL := y
|
2017-10-19 21:08:34 -04:00
|
|
|
FLUIDSYNTH := y
|
|
|
|
|
MUNT := y
|
|
|
|
|
PAS16 := n
|
|
|
|
|
DYNAREC := y
|
2017-05-24 00:27:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
# Include the master Makefile.MinGW for the rest. #
|
|
|
|
|
#########################################################################
|
2017-10-14 20:04:21 -04:00
|
|
|
include win/Makefile.mingw
|
2017-05-24 00:27:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# End of Makefile.local.
|