#
# type 'make shell' to compile shell.c
#

CC = gcc
CFLAGS = -g -Wall 

all:  shell

clean:
	rm -f shell

