aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile
new file mode 100644
index 0000000..5fbbf0b
--- /dev/null
+++ b/lib/Makefile
@@ -0,0 +1,24 @@
+# Copyright (c) 2020 Johannes Stoelp
+
+AS := gcc
+ASFLAGS := -g -O0
+CXX := g++
+CXXFLAGS := -g -O0 -Wall -Wextra -I.
+AR := ar
+
+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
+ $(AR) rcs $@ $(filter %.o,$^)
+
+%.o: %.cc
+ $(CXX) -c -o $@ $^ $(CXXFLAGS)
+
+%.o: %.s
+ $(AS) -c -o $@ $^ $(ASFLAGS)
+
+clean:
+ rm -f *.o **/*.o libmatcha.a