summaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorjolsa@redhat.com <jolsa@redhat.com>2011-05-25 00:20:13 +0200
committerJiri Olsa <Jiri Olsa jolsa@redhat.com>2011-05-29 19:05:24 +0200
commitec2866f5e5236a260b4d823a3435c2704f28bed5 (patch)
tree0416dcb0586076429b0c4e2dec77000939099cef /test/Makefile
parent9dff12d15a587ea8604172d057f6a0c3f6666591 (diff)
downloadlatrace-ec2866f5e5236a260b4d823a3435c2704f28bed5.tar.gz
latrace-ec2866f5e5236a260b4d823a3435c2704f28bed5.tar.xz
latrace-ec2866f5e5236a260b4d823a3435c2704f28bed5.zip
adding tests for latrace termination
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile16
1 files changed, 10 insertions, 6 deletions
diff --git a/test/Makefile b/test/Makefile
index 2849b40..30de2a1 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -13,16 +13,20 @@ test-common: test/test-lib.o test/test-common.o
test-args: test/test-lib.o test/test-args.o test/sysdeps/$(CONFIG_SYSDEP_DIR)/test-args.o
$(QUIET_LD)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ lib-test-args.so
+test-kill: test/test-kill.o
+ $(QUIET_LD)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
+
OBJS+=test/test-lib.o
-OBJS+=\
- test/lib-test-args.o \
+PROGRAMS+=lib-test-args.so test-args
+OBJS+=test/lib-test-args.o \
test/test-args.o \
test/sysdeps/$(CONFIG_SYSDEP_DIR)/test-args.o
-OBJS+=\
- test/lib-test-common.o \
- test/test-common.o
PROGRAMS+=lib-test-common.so test-common
-PROGRAMS+=lib-test-args.so test-args
+OBJS+=test/lib-test-common.o \
+ test/test-common.o
+
+PROGRAMS+=test-kill
+OBJS+= test/test-kill.o