aboutsummaryrefslogtreecommitdiff
path: root/scripts/gen-deps
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2021-09-12 21:51:10 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2021-09-12 21:51:10 +0300
commitd95c714c8cfdc5818b0e0f0c99cf2e5be66de202 (patch)
tree3b7b7a4fda733f284a4f77a9e67cc509201cfeca /scripts/gen-deps
parent1ab464d959b9ee3d3bb6758ac0d9d33fc6c77e46 (diff)
downloadkmi-d95c714c8cfdc5818b0e0f0c99cf2e5be66de202.tar.gz
kmi-d95c714c8cfdc5818b0e0f0c99cf2e5be66de202.zip
Initial physical page manager
+ Will probably still need a fair bit of tweakind and documentation improvements, but seems to work outside of the kernel. Also no valgrind errors, which is quite promising I guess.
Diffstat (limited to 'scripts/gen-deps')
-rwxr-xr-xscripts/gen-deps4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/gen-deps b/scripts/gen-deps
index b764deb..6ddd289 100755
--- a/scripts/gen-deps
+++ b/scripts/gen-deps
@@ -18,16 +18,18 @@ genlink () {
genrule () {
gencommon "${1}"
- echo " \$(COMPILE) -c \$< -o \$@" >> deps.mk
+ echo " \$(COMPILE) ${defs} -c \$< -o \$@" >> deps.mk
}
case "${1}" in
--kern)
suffix=.k.o
+ defs=-DKERNEL
func=genrule
;;
--init)
suffix=.i.o
+ defs=-DINIT
func=genrule
;;
--link)