
CC=gcc
CFLAGS=-Wall -Wextra -g
LDLIBS=-lpthread

TARGETS= fork-exec-pipe getenv mmap pthreads sock-thread stdin-stdout first-example fork-simple sigaction
TARGETS+= read-copy poll tcp-client tcp-server

all : $(TARGETS)

clean :
	rm -f $(TARGETS)

