Ready experimental branch for remerging into master

This commit is contained in:
Melissa Goad
2017-07-27 14:48:43 -05:00
parent 551f265970
commit d3adc13445
2 changed files with 10 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ endif
# Various compile-time options.
# -DROM_TRACE=0xcd800 traces ROM access from segment C800
# -DIO_TACE=0x66 traces I/O on port 0x66
STUFF = -DDEV_BRANCH
STUFF =
# Add feature selections here.
# -DANSI_CFG forces the config file to ANSI encoding.
@@ -52,6 +52,9 @@ endif
ifndef USB
USB = n
endif
ifndef DEV_BRANCH
DEV_BRANCH = n
endif
ifndef X64
X64 = n
endif
@@ -223,7 +226,6 @@ VIDOBJ = video.o \
vid_genius.o \
vid_s3.o vid_s3_virge.o \
vid_et4000.o vid_et4000w32.o vid_icd2061.o \
vid_nv_riva128.o \
vid_oti067.o \
vid_paradise.o \
vid_tvga.o vid_tgui9440.o vid_tkd8001_ramdac.o \
@@ -247,8 +249,12 @@ WINOBJ = win.o \
win_iodev.o win_joystick.o win_midi.o \
win_settings.o win_deviceconfig.o win_joystickconfig.o \
86Box.res
ifdef DEV_BRANCH
DEVOBJ = vid_nv_riva128.o
endif
OBJ = $(MAINOBJ) $(CPUOBJ) $(SYSOBJ) $(DEVOBJ) $(USBOBJ) \
$(NETOBJ) $(SCSIOBJ) $(SNDOBJ) $(VIDOBJ) $(WINOBJ)
$(NETOBJ) $(SCSIOBJ) $(SNDOBJ) $(VIDOBJ) $(WINOBJ) \
$(DEVOBJ)
LZFOBJ = lzf_c.o lzf_d.o

View File

@@ -28,6 +28,6 @@ EXTRAS =
DEBUG = n
OPTIM = n
X64 = y
DEV_BRANCH = n
# End of Makefile.mingw64.