CC = gcc

CFLAGS = -Wall

LD = gcc

LDFLAGS = -lm

TARGETS = pipe1 pipe2 pipe3 pipe5 popen1 namedpipe1 writepipe1 myfifo1

clean:
		rm -f *.o *~

cleanall:	clean
		rm -f $(TARGETS)

