all: duplex @echo @echo @echo "Finished building the project" # Prints a line of text duplex: pipes.c blError.o @echo @echo @echo "Generating target 'duplex'" ${CC} pipes.c blError.o -o duplex blError.o: blError.c blError.h @echo @echo @echo "Generating target 'blError.o'" ${CC} -c blError.c -o blError.o clean: - rm *.o - rm duplex - rm *~