#
# DOSEMU Makefile
#
# Name this subdirectory:
#

NAME  = i386

#
# Build files:
#   CFILES = .c files
#   LFILES = flex files
#   YFILES = bison files
#   MFILES = anything else in the directory
#

CFILES = console.c detach.c vga.c ramdac.c

ifdef CONFIG_VIDEO_ATI
CFILES := $(CFILES) ati.c
endif

ifdef CONFIG_VIDEO_ARK
CFILES := $(CFILES) ark.c
endif

ifdef CONFIG_VIDEO_ATI
CFILES := $(CFILES) ati.c
endif

ifdef CONFIG_VIDEO_CIRRUS
CFILES := $(CFILES) cirrus.c
endif

ifdef CONFIG_VIDEO_ET3000
CFILES := $(CFILES) et3000.c
endif

ifdef CONFIG_VIDEO_ET4000
CFILES := $(CFILES) et4000.c
endif

ifdef CONFIG_VIDEO_GVGA6400
CFILES := $(CFILES) gvga6400.c
endif

#ifdef CONFIG_VIDEO_MACH32     # I lied...
#CFILES := $(CFILES) mach32.c
#endif

ifdef CONFIG_VIDEO_OAK
CFILES := $(CFILES) oak.c
endif

ifdef CONFIG_VIDEO_PARADISE
CFILES := $(CFILES) paradise.c
endif

ifdef CONFIG_VIDEO_S3
CFILES := $(CFILES) s3.c
endif

ifdef CONFIG_VIDEO_TRIDENT
CFILES := $(CFILES) trident.c
endif

MFILES = 

include $(TOPDIR)/Makefile.common


