# To be defined on the "make" command line: M3TARGET = M3TARGET.IS.UNDEFINED SQUARES = \ square-3.top \ square-3-fix.top \ square-6.top \ square-6-fix.top \ hut-6.top \ hut-6-fix.top PROG = ../$(M3TARGET)/MakeSquare CUBEDIR = ../../MakeRawCube/tests all: $(SQUARES) square-3.top : $(PROG) ; \ $(PROG) -inFile $(CUBEDIR)/cube-3 -gridOrder 3 \ -shape flat \ -outFile square-3 square-3-fix.top : $(PROG) ; \ $(PROG) -inFile $(CUBEDIR)/cube-3 -gridOrder 3 \ -shape flat -fixBorder \ -outFile square-3-fix square-6.top : $(PROG) ; \ $(PROG) -inFile $(CUBEDIR)/cube-6 -gridOrder 6 \ -shape flat \ -outFile square-6 square-6-fix.top : $(PROG) ; \ $(PROG) -inFile $(CUBEDIR)/cube-6 -gridOrder 6 \ -shape flat -fixBorder \ -outFile square-6-fix hut-6.top : $(PROG) ; \ $(PROG) -inFile $(CUBEDIR)/cube-6 -gridOrder 6 \ -shape bent \ -outFile hut-6 hut-6-fix.top : $(PROG) ; \ $(PROG) -inFile $(CUBEDIR)/cube-6 -gridOrder 6 \ -shape bent -fixBorder \ -outFile hut-6-fix