# Buildfile for V fonts
#

#include ../buildprefix

all:

.PRECIOUS: install 

# Only install the files that have changed since the last "build install"
install: gf/*gf
	$(NETINSTALL) "$?" $(VSYS)/fonts
	touch install

# Install everything
install-all:
	rm -f install
	build install

clean:
	rm -f *BAK *CKP install


