aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2020-09-29 02:06:41 +0200
committerjohannst <johannes.stoelp@gmail.com>2020-09-29 02:06:41 +0200
commitfc83627b14536d0b13b2dd751d09cecbea9db378 (patch)
tree68d42350261fb7769615ceaa8af4187eb2dc571e /lib/Makefile
parent38d7af6768871a5d285e776bbcfe18b6e7440cfb (diff)
downloadmatcha-threads-fc83627b14536d0b13b2dd751d09cecbea9db378.tar.gz
matcha-threads-fc83627b14536d0b13b2dd751d09cecbea9db378.zip
move thread init into arch/
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 5fbbf0b..1416c9d 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -11,7 +11,8 @@ ARCH := x86_64
libmatcha.a: compile_guard.o thread.o executor.o \
thread.h executor.h \
arch/$(ARCH)/thread_create.o arch/$(ARCH)/yield.o \
- arch/$(ARCH)/asm.h
+ arch/$(ARCH)/init_stack.o \
+ arch/$(ARCH)/api.h
$(AR) rcs $@ $(filter %.o,$^)
%.o: %.cc