diff options
author | aqua <aqua@iserlohn-fortress.net> | 2023-06-11 23:11:25 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2023-06-11 23:11:25 +0300 |
commit | cb6aa7dd9703eb3dba275905f98de682b57d3a78 (patch) | |
tree | 4b2b6ff65c148c5e9fe035e621496fcb2302dfb8 /devices | |
parent | Make code ANSI C compatible (diff) | |
download | kernel-cb6aa7dd9703eb3dba275905f98de682b57d3a78.tar.xz |
Rework leaf makefiles to be included from top-level
- remove Makefile.all
Diffstat (limited to 'devices')
-rwxr-xr-x[-rw-r--r--] | devices/build.mk (renamed from devices/Makefile) | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/devices/Makefile b/devices/build.mk index 3222ad8..b27d945 100644..100755 --- a/devices/Makefile +++ b/devices/build.mk @@ -1,4 +1,4 @@ -include ../Makefile.config +#!../mach INCLUDES := -I../${ARCH} ${ARCH}_CFLAGS += ${INCLUDES} @@ -12,5 +12,3 @@ uart/test_uart_16550.SRCS = uart/uart_16550.c uart/unittest_uart_16550.cc TESTS += uart/test_uart_16550 -include ../rules.mk - |