diff options
| author | Louis Burda <quent.burda@gmail.com> | 2024-05-10 02:06:31 +0200 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2024-05-10 02:06:31 +0200 |
| commit | dc35e35d0ba1bce4cd1ee5f4b1b94c8263b15b43 (patch) | |
| tree | 0cb58c0a87a7f744a61fd1f648bb9761205bbc1b /lib/liballoc/common.mk | |
| parent | c3c03a382eb7dc9a32850da6615316faf4677a23 (diff) | |
| download | libidx-c-master.tar.gz libidx-c-master.zip | |
Diffstat (limited to 'lib/liballoc/common.mk')
| -rw-r--r-- | lib/liballoc/common.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/liballoc/common.mk b/lib/liballoc/common.mk new file mode 100644 index 0000000..fe00d79 --- /dev/null +++ b/lib/liballoc/common.mk @@ -0,0 +1,9 @@ +LIBALLOC_A = build/liballoc.a +LIBALLOC_A_SRC = src/allocator.c +LIBALLOC_A_DEP = $(LIBALLOC_A_SRC) include/allocator.h +LIBALLOC_A_SRCDEP = $(LIBALLOC_A_DEP) + +LIBALLOC_SO = build/liballoc.so +LIBALLOC_SO_SRC = src/allocator.c +LIBALLOC_SO_DEP = $(LIBALLOC_SO_SRC) include/allocator.h +LIBALLOC_SO_SRCDEP = $(LIBALLOC_SO_DEP) |
