.PHONY: build

build:
	@make all

all:
	(cd build; make) && cp build/nvi vi

clean:
	@cd build; make clean

depend:
	@echo Depend not supported on nvi yet

cleandepend:
	@echo Clean depend not supported on nvi yet
