Files
s390-tools/libu2s/Makefile
Jan Höppner 4d008849f7 libu2s: Remove library dependency
Commit aefc8cd3ff ("libutil/libu2s: Move strlcpy() implementation to
libutils") added a dependency to libutil. This is not necessary and
could potentially lead to parallel build errors. Remove the dependency.

Fixes: aefc8cd3ff ("libutil/libu2s: Move strlcpy() implementation to libutils")
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
2018-12-13 15:57:25 +01:00

15 lines
128 B
Makefile

include ../common.mak
lib = libu2s.a
all: $(lib)
objects = u2s.o
$(lib): $(objects)
install: all
clean:
rm -f *.o $(lib)