strace/test/Makefile
Dmitry V. Levin e837b14a53 tests: add a test for select syscall decoding
Convert test/select.c into a regular test.

* test/Makefile (PROGS): Remove select.
* test/.gitignore: Likewise.
* test/select.c: Rewrite to ...
* tests/select.c: ... new file.
* tests/select.awk: New file.
* tests/select.test: New test.
* tests/Makefile.am (check_PROGRAMS): Add select.
(TESTS): Add select.test.
(EXTRA_DIST): Add select.awk.
* tests/.gitignore: Add select.
2015-02-04 02:21:13 +00:00

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