Miscellaneous cosmetic changes to the makefile and header files

This commit is contained in:
Alexander Babikov
2021-04-26 01:10:50 +05:00
parent 1dbfb794b8
commit e7fb536ab7
3 changed files with 12 additions and 8 deletions

View File

@@ -58,7 +58,9 @@ extern const device_t prime3b_ide_device;
extern const device_t prime3c_device; extern const device_t prime3c_device;
extern const device_t prime3c_ide_device; extern const device_t prime3c_ide_device;
extern const device_t ps1_m2133_sio; extern const device_t ps1_m2133_sio;
#if defined(DEV_BRANCH) && defined(USE_SIO_DETECT)
extern const device_t sio_detect_device; extern const device_t sio_detect_device;
#endif
extern const device_t um8669f_device; extern const device_t um8669f_device;
extern const device_t via_vt82c686_sio_device; extern const device_t via_vt82c686_sio_device;
extern const device_t w83787f_device; extern const device_t w83787f_device;

View File

@@ -197,7 +197,9 @@ extern const device_t mach64gx_pci_device;
extern const device_t mach64vt2_device; extern const device_t mach64vt2_device;
/* ATi 18800 */ /* ATi 18800 */
#if defined(DEV_BRANCH) && defined(USE_VGAWONDER)
extern const device_t ati18800_wonder_device; extern const device_t ati18800_wonder_device;
#endif
extern const device_t ati18800_vga88_device; extern const device_t ati18800_vga88_device;
extern const device_t ati18800_device; extern const device_t ati18800_device;

View File

@@ -49,7 +49,7 @@ ifeq ($(DEV_BUILD), y)
I450KX := y I450KX := y
endif endif
ifndef M154X ifndef M154X
M145X := y M154X := y
endif endif
ifndef LASERXT ifndef LASERXT
LASERXT := y LASERXT := y
@@ -90,8 +90,8 @@ ifeq ($(DEV_BUILD), y)
ifndef XL24 ifndef XL24
XL24 := y XL24 := y
endif endif
ifndef USE_VECT486VL ifndef VECT486VL
USE_VECT486VL := y VECT486VL := y
endif endif
ifndef OLIVETTI ifndef OLIVETTI
OLIVETTI := y OLIVETTI := y
@@ -122,7 +122,7 @@ else
LASERXT := n LASERXT := n
endif endif
ifndef M154X ifndef M154X
M145X := n M154X := n
endif endif
ifndef MGA ifndef MGA
MGA := n MGA := n
@@ -160,8 +160,8 @@ else
ifndef XL24 ifndef XL24
XL24 := n XL24 := n
endif endif
ifndef USE_VECT486VL ifndef VECT486VL
USE_VECT486VL := n VECT486VL := n
endif endif
ifndef OLIVETTI ifndef OLIVETTI
OLIVETTI := n OLIVETTI := n
@@ -545,7 +545,7 @@ OPTS += -DUSE_SIO_DETECT
DEVBROBJ += sio_detect.o DEVBROBJ += sio_detect.o
endif endif
ifeq ($(M145X), y) ifeq ($(M154X), y)
OPTS += -DUSE_M154X OPTS += -DUSE_M154X
DEVBROBJ += ali1531.o ali1543.o DEVBROBJ += ali1531.o ali1543.o
endif endif
@@ -563,7 +563,7 @@ ifeq ($(XL24), y)
OPTS += -DUSE_XL24 OPTS += -DUSE_XL24
endif endif
ifeq ($(USE_VECT486VL), y) ifeq ($(VECT486VL), y)
OPTS += -DUSE_VECT486VL OPTS += -DUSE_VECT486VL
endif endif