
all: myshell

myshell: myshell.o
	gcc -Wall -o myshell myshell.o

myshell.o: myshell.c
	gcc -O -Wall -c myshell.c

clean:
	rm -f myshell.o
