1 CFLAGS += -Wall 2 3 PROGS = \ 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 9 all: $(PROGS) 10 11 leaderkill: LDFLAGS += -pthread 12 13 childthread: LDFLAGS += -pthread 14 15 many_looping_threads: LDFLAGS += -pthread 16 17 clean distclean: 18 rm -f *.o core $(PROGS) *.gdb 19 20 .PHONY: all clean distclean 21