mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-20 18:26:32 +00:00
* Modify the ahci module and delete the useless c code 修改ahci使其不再依赖旧的pci函数 删除旧的pci、msi函数代码
10 lines
101 B
Makefile
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
|
|
|