aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-11-26 22:38:35 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-11-26 22:38:35 +0100
commit053f93edecf6aa02ec29366621adf2de6522cdf3 (patch)
treeeb18b7bfc8e20a58b35d8ebc66af944fd1178b87 /Makefile
parentfa8f9e9f44d47f5b2d0b4cc6a2cc8f328e0caa80 (diff)
downloadfbos-053f93edecf6aa02ec29366621adf2de6522cdf3.tar.gz
fbos-053f93edecf6aa02ec29366621adf2de6522cdf3.zip
Move string.S to the lib directory
It was weird enough to have it in the 'kernel' directory, as it's way more fitting to have it on 'lib'. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a408630..60feb98 100644
--- a/Makefile
+++ b/Makefile
@@ -56,7 +56,7 @@ endif
##
# Paths
-SRC = $(filter-out kernel/fbos.ld.S, $(wildcard kernel/*.S kernel/*.c lib/*.c))
+SRC = $(filter-out kernel/fbos.ld.S, $(wildcard kernel/*.S kernel/*.c lib/*.c lib/*.S))
OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$(SRC)))
LINKER = kernel/fbos.ld
KRNL = fbos