#
# Makefile
#

all: shell-v0 shell-v1

shell-v0: shell-v0.c
	gcc shell-v0.c -o shell-v0

shell-v1: shell-v1.c
	gcc shell-v1.c -o shell-v1

clean:
	/bin/rm -f shell-v0 shell-v1 *~ core
