# # 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. # # Version: @(#)Makefile.local 1.0.10 2018/03/20 # # Author: Fred N. van Kempen, # ######################################################################### # Anything here will override defaults in Makefile.MinGW. # ######################################################################### # Name of the executable. #PROG := yourexe # 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_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_CDROM_IMAGE_LOG=N sets logging level at N. # -DENABLE_CDROM_IOCTL_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_SCAT_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_NCR53C810_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_VOODOO_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 := AUTODEP := n CRASHDUMP := n 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 OPENAL := y FLUIDSYNTH := y MUNT := y PAS16 := n DYNAREC := y ######################################################################### # Include the master Makefile.MinGW for the rest. # ######################################################################### include win/Makefile.mingw # End of Makefile.local.