summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPrefetch2023-07-24 16:23:27 +0200
committerPrefetch2023-07-24 16:23:27 +0200
commita211da8cfe9b0565881537cc81b09ae55c722111 (patch)
tree90c05adac663125fc4f0604edb01431c2dcbc9af /Makefile
parent7231a21b00028a52d7938131bfeca4d663d09071 (diff)
Rename lib/ to src/ (better for Tab-completion)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 33fe35b..6b1b0a5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
-liblinen.so: lib/thread_create.o lib/thread_finish.o lib/lock_acquire.o lib/lock_release.o
+liblinen.so: src/thread_create.o src/thread_finish.o src/lock_acquire.o src/lock_release.o
gcc -shared -o $@ $^
-lib/%.o: lib/%.asm
+src/%.o: src/%.asm
nasm -f elf64 $<
tests/%.run: tests/%.c liblinen.so linen.h
@@ -14,4 +14,4 @@ tests: tests/test01.run
clean:
rm -f tests/*.run
rm -f liblinen.so
- rm -f lib/*.o
+ rm -f src/*.o