b51f364c42
This includes decoding of 32-bit sigreturn by 64-bit strace, which previously wasn't done. Added a test for it. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
18 lines
328 B
Makefile
18 lines
328 B
Makefile
CFLAGS += -Wall
|
|
|
|
PROGS = \
|
|
vfork fork sig skodic clone leaderkill childthread \
|
|
sigkill_rain wait_must_be_interruptible threaded_execve \
|
|
mtd ubi sigreturn
|
|
|
|
all: $(PROGS)
|
|
|
|
leaderkill: LDFLAGS += -pthread
|
|
|
|
childthread: LDFLAGS += -pthread
|
|
|
|
clean distclean:
|
|
rm -f *.o core $(PROGS) *.gdb
|
|
|
|
.PHONY: all clean distclean
|