118 lines
4.5 KiB
Makefile
118 lines
4.5 KiB
Makefile
#
|
|
# VARCem Virtual ARchaeological Computer EMulator.
|
|
# An emulator of (mostly) x86-based PC systems and devices,
|
|
# using the ISA,EISA,VLB,MCA and PCI system buses, roughly
|
|
# spanning the era between 1981 and 1995.
|
|
#
|
|
# This file is part of the VARCem Project.
|
|
#
|
|
# Prefix for localizing the general Makefile.mingw for local
|
|
# settings, so we can avoid changing the main one for all of
|
|
# our local setups.
|
|
#
|
|
# Version: @(#)Makefile.local 1.0.8 2018/04/23
|
|
#
|
|
# Author: Fred N. van Kempen, <decwiz@yahoo.com>
|
|
#
|
|
# Copyright 2017,2018 Fred N. van Kempen.
|
|
#
|
|
# Redistribution and use in source and binary forms, with
|
|
# or without modification, are permitted provided that the
|
|
# following conditions are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the entire
|
|
# above notice, this list of conditions and the following
|
|
# disclaimer.
|
|
#
|
|
# 2. Redistributions in binary form must reproduce the above
|
|
# copyright notice, this list of conditions and the
|
|
# following disclaimer in the documentation and/or other
|
|
# materials provided with the distribution.
|
|
#
|
|
# 3. Neither the name of the copyright holder nor the names
|
|
# of its contributors may be used to endorse or promote
|
|
# products derived from this software without specific
|
|
# prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#########################################################################
|
|
# Anything here will override defaults in the Platform Makefile. #
|
|
#########################################################################
|
|
|
|
|
|
# Name of the executable.
|
|
#PROG := yourexe
|
|
|
|
# Build Platform.
|
|
SCRIPT := mingw/Makefile.MinGW
|
|
|
|
# Various compile-time options.
|
|
# -DROM_TRACE=0xc800 traces ROM access from segment C800
|
|
# -DIO_TRACE=0x66 traces I/O on port 0x66
|
|
# -DIO_CATCH enables I/O range catch logs
|
|
STUFF :=
|
|
|
|
# Add feature selections here.
|
|
# -DANSI_CFG forces the config file to ANSI encoding
|
|
# -DENABLE_PCI_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_KEYBOARD_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_SERIAL_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_FDC_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_D86F_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_HDC_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_HDD_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_ZIP_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_CDROM_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_CDROM_IMAGE_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_CDROM_IOCTL_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_SOUND_EMU8K_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_SOUND_MPU401_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_SOUND_DEV_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_NIC_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_SCSI_BUS_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_SCSI_DISK_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_SCSI_DEV_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_SCSI_X54X_LOG=n enables logging for that module, sets level n
|
|
# -DENABLE_VOODOO_LOG=n enables logging for that module, sets level n
|
|
|
|
|
|
EXTRAS :=
|
|
|
|
|
|
AUTODEP := n
|
|
CRASHDUMP := n
|
|
DEBUG := n
|
|
OPTIM := n
|
|
X64 := n
|
|
RELEASE := n
|
|
USB := n
|
|
VNC := n
|
|
RDP := n
|
|
DEV_BUILD := n
|
|
DEV_BRANCH := n
|
|
OPENAL := y
|
|
FLUIDSYNTH := y
|
|
MUNT := y
|
|
PAS16 := n
|
|
DYNAREC := y
|
|
|
|
|
|
#########################################################################
|
|
# Include the master Makefile.MinGW for the rest. #
|
|
#########################################################################
|
|
include win/$(SCRIPT)
|
|
|
|
|
|
# End of Makefile.local.
|