libhmap-c

C hashmap library
git clone https://git.sinitax.com/sinitax/libhmap-c
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

commit 0c789f0d72ea813b0962b93aab7a31a294f44b78
parent a19022e72147a169610d70cd6d1c5a4a94988983
Author: Louis Burda <quent.burda@gmail.com>
Date:   Sat, 13 May 2023 22:21:08 +0200

Add cleanall makefile target

Diffstat:
MMakefile | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -25,6 +25,9 @@ all: build/libhmap.so build/libhmap.a build/test clean: rm -rf build +cleanall: clean + make -C lib/liballoc cleanall + build: mkdir build @@ -53,4 +56,4 @@ uninstall: rm -f "$(DESTDIR)$(PREFIX)$(LIBDIR)/libhmap.a" rm -f "$(DESTDIR)$(PREFIX)$(LIBDIR)/libhmap.so" -.PHONY: all clean install uninstall +.PHONY: all clean cleanall install uninstall