
CFLAGS=-DUNIX 
DEBUG=-g
#DEBUG=

all: ourshell


ourshell:	ourshell.c
	gcc $(CFLAGS) $(DEBUG) ourshell.c -o ourshell
clean:
	rm ourshell *~

