1CFLAGS= -O -lpthread -D_LINUX_
2SRCS=$(wildcard *.c)
3TARGETS=$(patsubst %.c,%,$(SRCS))
4
5all: $(TARGETS)
6
7