mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Commitaefc8cd3ff("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>
15 lines
128 B
Makefile
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)
|