blob: 419b5ca30037039e2ab7af4780bc4a333760737a [file] [log] [blame]
Mike Frysingerb51ce622013-05-02 15:43:45 -04001CFLAGS += -Wall
2
Mike Frysinger48d31592013-05-02 15:44:42 -04003PROGS = \
Denys Vlasenko8158e772011-06-08 14:08:59 +02004 vfork fork sig skodic clone leaderkill childthread \
Mike Frysinger48d31592013-05-02 15:44:42 -04005 sigkill_rain wait_must_be_interruptible threaded_execve \
Dmitry V. Levin35701992015-02-06 01:52:59 +00006 mtd ubi sigreturn seccomp
Mike Frysinger48d31592013-05-02 15:44:42 -04007
8all: $(PROGS)
Roland McGrathe1e57b22007-07-05 18:43:18 +00009
10leaderkill: LDFLAGS += -pthread
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000011
Roland McGrath276ceb32007-11-13 08:12:12 +000012childthread: LDFLAGS += -pthread
13
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000014clean distclean:
Mike Frysinger48d31592013-05-02 15:44:42 -040015 rm -f *.o core $(PROGS) *.gdb
16
17.PHONY: all clean distclean