diff options
author | Prefetch | 2023-07-24 16:23:27 +0200 |
---|---|---|
committer | Prefetch | 2023-07-24 16:23:27 +0200 |
commit | a211da8cfe9b0565881537cc81b09ae55c722111 (patch) | |
tree | 90c05adac663125fc4f0604edb01431c2dcbc9af /Makefile | |
parent | 7231a21b00028a52d7938131bfeca4d663d09071 (diff) |
Rename lib/ to src/ (better for Tab-completion)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |