SHELL=/bin/sh
all:
	-@INDENT="==$$INDENT"; export INDENT; run

OBJ=lc.o

system:	$(OBJ)
	@$(CC) -o lc $(OBJ)

clean:
	-@do-clean
	-@make -f Makefile.gct clean
