Commit d9664e83 authored by Kir Kolyshkin's avatar Kir Kolyshkin Committed by Pavel Emelyanov

test/zdtm/static/Makefile: drop .o for flags

Makefile knows that a binary depends on .o file,
and the .o file depends on .c file, and adds the
per-target variables even in the indirect case.
Therefore, .o suffix is not needed here.

Note that it not hurts to leave it as is, so this commit
is done only for the sake of keeping things simple.
Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent b02526f3
...@@ -387,9 +387,9 @@ $(TST): | $(LIB) ...@@ -387,9 +387,9 @@ $(TST): | $(LIB)
aio00: LDLIBS += -laio aio00: LDLIBS += -laio
different_creds: LDLIBS += -lcap different_creds: LDLIBS += -lcap
futex.o: CFLAGS += -pthread futex: CFLAGS += -pthread
futex: LDFLAGS += -pthread futex: LDFLAGS += -pthread
futex-rl.o: CFLAGS += -pthread futex-rl: CFLAGS += -pthread
futex-rl: LDFLAGS += -pthread futex-rl: LDFLAGS += -pthread
jobctl00: LDLIBS += -lutil jobctl00: LDLIBS += -lutil
socket_listen: LDLIBS += -lrt -pthread socket_listen: LDLIBS += -lrt -pthread
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment