liblash

Basic tools written and used by lash in c programming.
Log | Files | Refs

commit 7bffe37678d93d4d5c5d401adbe0623eedb1e91b
parent 242e93cc45ad8db45b401449d66734a1b52ad099
Author: lash <dev@holbrook.no>
Date:   Fri, 31 May 2024 20:38:36 +0100

Add all header files

Diffstat:
Msrc/Makefile | 11++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/Makefile b/src/Makefile @@ -31,14 +31,15 @@ shared: all install: shared cat -v endian/*.h >> $(DESTDIR)/include/lash.h - cp -v endian/*.h $(DESTDIR)/include/ + install -m0644 -v endian/*.h -t $(DESTDIR)/include cat -v hex/*.h >> $(DESTDIR)/include/lash.h - cp -v hex/*.h $(DESTDIR)/include/ + install -m0644 -v hex/*.h -t $(DESTDIR)/include cat -v llog/*.h >> $(DESTDIR)/include/lash.h - cp -v llog/*.h $(DESTDIR)/include/ + install -m0644 -v llog/*.h -t $(DESTDIR)/include cat -v rerr/*.h >> $(DESTDIR)/include/lash.h - cp -v rerr/*.h $(DESTDIR)/include/ - cp -v liblash.so $(DESTDIR)/lib/ + install -m0644 -v rerr/*.h -t $(DESTDIR)/include + #cp -v liblash.so $(DESTDIR)/lib/ + install -m0644 -v liblash.so -t $(DESTDIR)/lib cd $(DESTDIR)/lib && ln -svf liblash.so liblash.so.$(VERSION)