CC = gcc
LD = ld
CFLAGS = -nostdinc -I../include 

all:	shell

shell:	shell.o
	$(LD) -Ttext 0x0 -e main shell.o ../lib/lib.a -o shell
	
shell.o:	shell.c
	$(CC) $(CFLAGS) -c -o $@ $< 

clean:
	rm -f shell shell.o
