Files
DragonOS/kernel/src/driver/pci/Makefile
YJwu2023 8d94ea66a3 Patch ahci (#348)
* Modify the ahci module and delete the useless c code

修改ahci使其不再依赖旧的pci函数
删除旧的pci、msi函数代码
2023-08-28 15:43:07 +08:00

10 lines
101 B
Makefile

all: pci_irq.o
CFLAGS += -I .
pci_irq.o: pci_irq.c
$(CC) $(CFLAGS) -c pci_irq.c -o pci_irq.o