mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
The strlcpy() implementation in libu2s is beneficial for other tools as well. Move the implementation to libutils and replace misc_strlcpy() in libu2s accordingly. Change the link order in zipl to make it build again. Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
15 lines
157 B
Makefile
15 lines
157 B
Makefile
include ../common.mak
|
|
|
|
lib = libu2s.a
|
|
|
|
all: $(lib)
|
|
|
|
objects = u2s.o
|
|
|
|
$(lib): $(objects) $(rootdir)/libutil/libutil.a
|
|
|
|
install: all
|
|
|
|
clean:
|
|
rm -f *.o $(lib)
|