1CFLAGS += -Wall 2 3PROGS = \ 4 sig skodic clone leaderkill childthread \ 5 sigkill_rain wait_must_be_interruptible threaded_execve \ 6 mtd ubi seccomp sfd mmap_offset_decode x32_lseek x32_mmap \ 7 many_looping_threads 8 9all: $(PROGS) 10 11leaderkill: LDFLAGS += -pthread 12 13childthread: LDFLAGS += -pthread 14 15many_looping_threads: LDFLAGS += -pthread 16 17clean distclean: 18 rm -f *.o core $(PROGS) *.gdb 19 20.PHONY: all clean distclean 21