aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile1
-rw-r--r--lib/meson.build13
2 files changed, 0 insertions, 14 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 22c090c..c34790d 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -10,7 +10,6 @@ libk,OBJS = $(libk,SRCS:%.c=%.o)
libk.a: ${libk,OBJS}
@echo ' AR $@'
@${AR} ${ARFLAGS} $@ $^
- i686-elf-ranlib $@
clean:
@rm -rf ${libk,OBJS}
diff --git a/lib/meson.build b/lib/meson.build
deleted file mode 100644
index b83c680..0000000
--- a/lib/meson.build
+++ /dev/null
@@ -1,13 +0,0 @@
-libk_srcs = ['memcpy.c', 'memset.c', 'string/itoa.c']
-
-libk = static_library('k', [libk_srcs, 'stdio/printf.c'],
- include_directories: ['.', '..'],
- override_options: 'b_coverage=false'
-)
-
-tk = library('tk', libk_srcs,
- include_directories: ['.', '..'],
- native: true
-)
-test('mem', executable('mem', 'test/mem.c', c_args: '-fno-builtin', link_with: tk, native: true), suite: 'libk')
-test('string', executable('string', 'test/string.c', c_args: '-fno-builtin', link_with: tk, native: true), suite: 'libk')