aboutsummaryrefslogtreecommitdiff
path: root/Makefile.config
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2022-11-06 14:29:39 +0200
committeraqua <aqua@iserlohn-fortress.net>2022-11-06 14:29:39 +0200
commit2e0702c597e3099316c8c82379c3425ecc7a2dd2 (patch)
tree58860a91682a61d1e5bdf24b73617b4ad49b0de6 /Makefile.config
parentmakefile: replace ,SRCS with .SRCS (diff)
downloadkernel-2e0702c597e3099316c8c82379c3425ecc7a2dd2.tar.xz
lib/malloc: add linked list implementation
Diffstat (limited to 'Makefile.config')
-rw-r--r--Makefile.config3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.config b/Makefile.config
index c3f80ad..a683ac8 100644
--- a/Makefile.config
+++ b/Makefile.config
@@ -37,4 +37,7 @@ AR := i686-elf-ar
ARFLAGS := -crus
STRIP := i686-elf-strip
+# test framework
+GTEST := $(shell pkg-config --cflags --libs gtest gtest_main)
+GMOCK := $(shell pkg-config --cflags --libs gmock)