Makefile (310B)
1 BLTHOME := ../../ 2 3 all: version build image 4 5 version: 6 echo "0" > version 7 8 build: 9 $(BLTHOME)/lib/newvers 10 mv -f version.c $(BLTHOME)lib 11 @cd $(BLTHOME) ; make subdirs 12 13 image: 14 @( DIR=`pwd` ; cd $(BLTHOME) ; util/bootmaker $$DIR/openblt.ini $$DIR/openblt ) 15 16 clean: 17 rm -f openblt 18 @cd $(BLTHOME) ; make clean 19