2017-05-24 00:27:42 -04:00
|
|
|
#
|
2023-01-06 15:36:05 -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-24 00:27:42 -04:00
|
|
|
#
|
2023-01-06 15:36:05 -05:00
|
|
|
# This file is part of the 86Box distribution.
|
2017-05-24 00:27:42 -04:00
|
|
|
#
|
2023-01-06 15:36:05 -05:00
|
|
|
# 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-05-24 00:27:42 -04:00
|
|
|
#
|
2023-01-06 15:36:05 -05:00
|
|
|
# Authors: Fred N. van Kempen, <decwiz@yahoo.com>
|
2017-05-24 00:27:42 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
#########################################################################
|
2023-01-06 15:36:05 -05:00
|
|
|
# Anything here will override defaults in Makefile.MinGW. #
|
2017-05-24 00:27:42 -04:00
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Name of the executable.
|
2023-01-06 15:36:05 -05:00
|
|
|
#PROG := 86box.exe
|
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
|
2023-01-06 15:36:05 -05:00
|
|
|
STUFF :=
|
2017-10-19 21:08:34 -04:00
|
|
|
|
|
|
|
|
# Add feature selections here.
|
|
|
|
|
# -DANSI_CFG forces the config file to ANSI encoding.
|
2018-05-21 19:04:05 +02:00
|
|
|
# Root logging:
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_ACPI_LOG=N sets logging level at N.
|
2019-10-20 15:27:50 +02:00
|
|
|
# -DENABLE_APM_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_BUGGER_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_CONFIG_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_DDMA_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_DEVICE_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_DMA_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_IO_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_IOAPIC_LOG=N sets logging level at N.
|
2018-09-03 17:24:13 +02:00
|
|
|
# -DENABLE_ISAMEM_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_ISARTC_LOG=N sets logging level at N.
|
2019-10-20 15:27:50 +02:00
|
|
|
# -DENABLE_KEYBOARD_AT_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_KEYBOARD_XT_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_LM75_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_LM78_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_MEM_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_MOUSE_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_MOUSE_BUS_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_MOUSE_PS2_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_MOUSE_SERIAL_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_NVR_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_PC_LOG=N sets logging level at N.
|
2017-10-19 21:08:34 -04:00
|
|
|
# -DENABLE_PCI_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_PIC_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_PIT_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_POSTCARD_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_ROM_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SERIAL_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_SMBUS_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SMBUS_PIIX4_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SPD_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_USB_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_VNC_LOG=N sets logging level at N.
|
2019-10-20 15:27:50 +02:00
|
|
|
# -DENABLE_VNC_KEYMAP_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# cdrom/ logging:
|
2017-10-19 21:08:34 -04:00
|
|
|
# -DENABLE_CDROM_LOG=N sets logging level at N.
|
2018-03-21 14:46:54 +01:00
|
|
|
# -DENABLE_CDROM_IMAGE_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_CDROM_IMAGE_BACKEND_LOG=N sets logging level at N.
|
|
|
|
|
# chipset/ logging:
|
|
|
|
|
# -DENABLE_I420EX_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_NEAT_LOG=N sets logging level at N.
|
2020-06-30 00:34:49 +02:00
|
|
|
# -DENABLE_OPTI495_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_OPTI895_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_PIIX_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SIO_LOG=N sets logging level at N.
|
2020-06-30 00:34:49 +02:00
|
|
|
# -DENABLE_SIS_85C496_LOG=N sets logging level at N.
|
2020-06-13 10:54:05 +02:00
|
|
|
# codegen/, codegen_new/, cpu/ logging:
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_X86SEG_LOG=N sets logging level at N.
|
2020-06-13 10:54:05 +02:00
|
|
|
# cpu/ logging:
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_386_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_386_COMMON_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_386_DYNAREC_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_808X_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_CPU_LOG=N sets logging level at N.
|
2018-08-26 08:16:22 +02:00
|
|
|
# -DENABLE_FPU_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# disk/ logging:
|
|
|
|
|
# -DENABLE_ESDI_AT_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_ESDI_MCA_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_HDC_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_HDD_IMAGE_LOG=N sets logging level at N.
|
2017-10-19 21:08:34 -04:00
|
|
|
# -DENABLE_IDE_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_MO_LOG=N sets logging level at N.
|
2019-10-20 15:27:50 +02:00
|
|
|
# -DENABLE_SFF_LOG=N sets logging level at N.
|
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
|
|
|
# -DENABLE_ST506_AT_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_ST506_XT_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_XTA_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_ZIP_LOG=N sets logging level at N.
|
|
|
|
|
# floppy/ logging:
|
2017-10-19 21:08:34 -04:00
|
|
|
# -DENABLE_D86F_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_FDC_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_FDD_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_FDI_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_FDI2RAW_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_IMD_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_IMG_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_JSON_LOG=N sets logging level at N.
|
2019-10-20 15:27:50 +02:00
|
|
|
# -DENABLE_MFM_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_TD0_LOG=N sets logging level at N.
|
|
|
|
|
# machine/ logging:
|
|
|
|
|
# -DENABLE_AMSTRAD_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_EUROPC_LOG=N sets logging level at N.
|
2018-10-22 04:22:00 +02:00
|
|
|
# -DENABLE_M24VID_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_MACHINE_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_PS1_HDC_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_PS2_MCA_LOG=N sets logging level at N.
|
2019-10-20 15:27:50 +02:00
|
|
|
# -DENABLE_TANDY_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_T1000_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_T3100E_LOG=N sets logging level at N.
|
|
|
|
|
# network/ logging:
|
2018-10-19 00:39:32 +02:00
|
|
|
# -DENABLE_3COM503_LOG=N sets logging level at N.
|
2019-10-20 15:27:50 +02:00
|
|
|
# -DENABLE_DP8390_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_NETWORK_LOG=N sets logging level at N.
|
2022-02-07 18:05:58 +05:00
|
|
|
# -DENABLE_NE2K_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_PCAP_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_PCNET_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_SLIRP_LOG=N sets logging level at N.
|
2018-10-19 00:39:32 +02:00
|
|
|
# -DENABLE_WD_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# printer/ logging:
|
|
|
|
|
# -DENABLE_ESCP_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# scsi/ logging:
|
2017-10-19 21:08:34 -04:00
|
|
|
# -DENABLE_AHA154X_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_BUSLOGIC_LOG=N sets logging level at N.
|
2019-10-20 15:27:50 +02:00
|
|
|
# -DENABLE_NCR5380_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_NCR53C8XX_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_SCSI_CDROM_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SCSI_DISK_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SPOCK_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_X54X_LOG=N sets logging level at N.
|
|
|
|
|
# sound/ logging:
|
|
|
|
|
# -DENABLE_ADLIB_LOG=N sets logging level at N.
|
2017-10-19 21:08:34 -04:00
|
|
|
# -DENABLE_AUDIOPCI_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_EMU8K_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_MPU401_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_PAS16_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SB_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SB_DSP_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_SOUND_LOG=N sets logging level at N.
|
|
|
|
|
# video/ logging:
|
|
|
|
|
# -DENABLE_ATI28800_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_MACH64_LOG=N sets logging level at N.
|
2019-10-20 15:27:50 +02:00
|
|
|
# -DENABLE_COMPAQ_CGA_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_ET4000W32_LOG=N sets logging level at N.
|
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
|
|
|
# -DENABLE_HT216_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_ICD2061_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_IM1024_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_PGC_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_S3_VIRGE_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_VID_TABLE_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_VIDEO_LOG=N sets logging level at N.
|
2017-12-28 20:42:45 +01:00
|
|
|
# -DENABLE_VOODOO_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# win/ logging:
|
2019-10-20 15:27:50 +02:00
|
|
|
# -DENABLE_WIN_LOG=N sets logging level at N.
|
2020-06-13 10:44:18 +02:00
|
|
|
# -DENABLE_DISCORD_LOG=N sets logging level at N.
|
2018-05-21 19:04:05 +02:00
|
|
|
# -DENABLE_DYNLD_LOG=N sets logging level at N.
|
|
|
|
|
# -DENABLE_JOYSTICK_LOG=N sets logging level at N.
|
2018-07-15 01:41:53 +02:00
|
|
|
# -DENABLE_SDL_LOG=N sets logging level at N.
|
2019-02-06 03:34:39 +01:00
|
|
|
# -DENABLE_SETTINGS_LOG=N sets logging level at N.
|
2023-01-06 15:36:05 -05:00
|
|
|
EXTRAS :=
|
2017-10-19 21:08:34 -04:00
|
|
|
|
2017-05-24 00:27:42 -04:00
|
|
|
|
2023-01-06 15:36:05 -05:00
|
|
|
AUTODEP := 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
|
2017-05-24 00:27:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#########################################################################
|
2023-01-06 15:36:05 -05:00
|
|
|
# Include the master Makefile.MinGW for the rest. #
|
2017-05-24 00:27:42 -04:00
|
|
|
#########################################################################
|
2017-10-14 20:04:21 -04:00
|
|
|
include win/Makefile.mingw
|
2017-05-24 00:27:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# End of Makefile.local.
|