CC = gcc
CFLAGS = -Wall -pedantic -g

PROGRAMS = sh1 sh2 sh_fork sh_server sh_client

all: $(PROGRAMS)

clean:
	rm -f *.o *~ *.aux *.log *.dvi $(PROGRAMS)