Files
s390-tools/libu2s/Makefile
Jan Höppner aefc8cd3ff libutil/libu2s: Move strlcpy() implementation to libutils
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>
2018-11-16 15:01:42 +01:00

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)