#
#	This is Sub Makefile for Create Sample Null Image.
#

#### Input extention ####
# Defined at Main

#### Suffixes rule ####

#### INCLUDE ####

#### Definition ####
# Defined at Main

#### Rules of the list created ####


##### Commands #####
NulImage::
	mrcImageNullImageCreate -o $(NUL_FILE_NAME).$(NUL) \
							-Nx $(NUL_SIZE_X) -Ny $(NUL_SIZE_Y) -Nz $(NUL_SIZE_Z) \
							-v $(NUL_VALUE) -d $(NUL_LENGTH);
help_NulImage::
	@echo
	@echo "NulImage"
	@echo "This is Sub Makefile for Create Sample Null Image."
	@echo
	@echo "	(Command):"
	@echo "		NulImage:	Create Null Image File."
	@echo
	@echo "	(Setting Data):"
	@echo "		NUL_FILE_NAME:		filename of output"
	@echo "		NUL:			extention of output"
	@echo "		NUL_SIZE_X:		Nx of output"
	@echo "		NUL_SIZE_Y:		Ny of output"
	@echo "		NUL_SIZE_Z:		Nz of output"
	@echo "		NUL_VALUE:		value of output"
	@echo "		NUL_LENGTH:		length of output"
							
##### Commands(Input to Output) #####
