mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 15:26:47 +00:00
10 lines
151 B
Makefile
10 lines
151 B
Makefile
|
|
all: ata.o ahci.o
|
|
|
|
CFLAGS += -I .
|
|
|
|
ata.o: ata.c
|
|
$(CC) $(CFLAGS) -c ata.c -o ata.o
|
|
|
|
ahci.o: ahci/ahci.c
|
|
$(CC) $(CFLAGS) -c ahci/ahci.c -o ahci/ahci.o
|