libstr-c

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

commit 19ad7d952629c5ecc1e713c897825a1eaf581dbf
parent ebcf64b2279df2ec8089ccd10b815996c4f0442e
Author: Louis Burda <quent.burda@gmail.com>
Date:   Sat, 13 May 2023 22:23:22 +0200

Add cleanall makefile target

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

diff --git a/Makefile b/Makefile @@ -10,6 +10,9 @@ all: build/libstr.a build/libstr.so build/test clean: rm -rf build +cleanall: clean + make -C lib/liballoc cleanall + build: mkdir build @@ -38,4 +41,4 @@ uninstall: rm -f "$(DESTDIR)$(PREFIX)$(LIBDIR)/libstr.so" rm -f "$(DESTDIR)$(PREFIX)$(INCLDIR)/str.h" -.PHONY: all clean install uninstall +.PHONY: all clean cleanall install uninstall