mirror of
https://github.com/Fennix-Project/Drivers.git
synced 2025-05-25 22:14:31 +00:00
22 lines
384 B
Makefile
22 lines
384 B
Makefile
build:
|
|
cp -f ../Kernel/driver.h include/driver.h
|
|
mkdir -p out
|
|
make -C library build
|
|
make -C audio build
|
|
make -C input build
|
|
make -C misc build
|
|
make -C network build
|
|
make -C storage build
|
|
|
|
prepare:
|
|
$(info Nothing to prepare)
|
|
|
|
clean:
|
|
rm -rf out
|
|
make -C library clean
|
|
make -C audio clean
|
|
make -C input clean
|
|
make -C misc clean
|
|
make -C network clean
|
|
make -C storage clean
|