include ../define.mk

OBJS = command.o

all:	shell.o

shell.o:	$(OBJS)
	$(LD) -r -o $@ $(OBJS)


clean:
	rm -f *.o
