From a211da8cfe9b0565881537cc81b09ae55c722111 Mon Sep 17 00:00:00 2001 From: Prefetch Date: Mon, 24 Jul 2023 16:23:27 +0200 Subject: Rename lib/ to src/ (better for Tab-completion) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3