elks-enhanced
public
Read
Owner: themaster
Branch: master
Commits: 6893
Updated: 2026-04-19 00:15
Git CLI clone URL
git clone https://www.xt-emporium.com/git/elks-enhanced.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
elks-enhanced
/
elks
/
arch
/
i86
/
drivers
/
block
/
Makefile
File editor
# Makefile for the ELKS blocks devices. # # Note! Dependencies are done automagically by 'make dep', which also # removes any old dependencies. DON'T put your own dependencies here # unless it's something special (ie not a .c file). # ######################################################################### # Relative path to base directory. BASEDIR = ../../../.. ######################################################################### # Define the variables required by the standard rules - see the standard # rules file (below) for details of these variables. USEBCC = Y CLEANDEP = CLEANME = DEPEND = DISTFILES = NOINDENT = directhd.c ######################################################################### # Include standard commands. include $(BASEDIR)/Makefile-rules ######################################################################### # Objects to be compiled. OBJS = init.o genhd.o ll_rw_blk.o # BIOS floppy and/or hard drive support ifeq ($(CONFIG_BLK_DEV_BFD), y) OBJS += bioshd.o bios.o endif ifeq ($(CONFIG_BLK_DEV_BHD), y) ifneq ($(CONFIG_BLK_DEV_BFD), y) OBJS += bioshd.o bios.o endif ifeq ($(CONFIG_IDE_PROBE), y) OBJS += idequery.o endif endif # direct fd support ifeq ($(CONFIG_BLK_DEV_FD), y) OBJS += directfd.o endif ifeq ($(CONFIG_BLK_DEV_RAM), y) OBJS += rd.o endif ifeq ($(CONFIG_ROMFS_FS), y) OBJS += romflash.o endif ifeq ($(CONFIG_FS_XMS), y) ifeq ($(CONFIG_FS_XMS_RAMDISK), y) OBJS += ssd.o ssd-xms.o endif endif ifeq ($(CONFIG_BLK_DEV_SSD_TEST), y) OBJS += ssd.o ssd-test.o endif ifeq ($(CONFIG_BLK_DEV_SSD_SD), y) ifeq ($(CONFIG_ARCH_NECV25), y) ifeq ($(CONFIG_HW_SPI), y) OBJS += ssd.o ssd-sd.o spi-hw-necv25.o else OBJS += ssd.o ssd-sd.o spi-necv25.o endif endif ifeq ($(CONFIG_ARCH_8018X), y) OBJS += ssd.o ssd-sd.o spi-8018x.o endif endif ifeq ($(CONFIG_BLK_DEV_ATA_CF), y) OBJS += ata.o ata-cf.o endif # experimental (and not working) direct hd support ifeq ($(CONFIG_BLK_DEV_HD), y) OBJS += directhd.o endif ######################################################################### # Commands. all: blk_drv.a blk_drv.a: $(OBJS) $(AR) rcs blk_drv.a $(OBJS) ######################################################################### # Standard commands. ######################################################################### ### Dependencies:
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
master
Visibility
public
Your access
Read
Remote
Configured
File activity
View file history