#
# Makefile for Chapter 04
#
# Type  make    to compile all the programs
# in the chapter 
#
all: spwd

clean:
	rm -f spwd


spwd: spwd.c 
	cc -o spwd spwd.c 

