# # Makefile for Chapter 01 # # Type make to compile all the programs # in the chapter # all: who2 clean: rm -f who2 who2: who2.c gcc -o who2 who2.c