#
#	This is Sub Makefile for mrcImageROI3D.
#

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

#### Suffixes rule ####
.SUFFIXES: .$(INI) .$(OUT)

#### INCLUDE ####
# Use TIPS File.
-include ${EOS_HOME}/tutorial/TIPS/Projection3DImage/Makefile/Makefile-lib

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

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


##### Commands #####
InitialData::
	touch $(FILE_NAME).$(INI);
	rm $(FILE_NAME).$(INI);
	ln -s $(INPUT_PATH) $(FILE_NAME).$(INI)
	
InitialImage::
	export PRJ_FILE_NAME=$(FILE_NAME); \
	export IN_PRJ=$(INI); \
	export PRJ=$(INI)2d; \
	export OUT_PRJ=tiff; \
	make Projection3DImage;

OutputImage::
	export PRJ_FILE_NAME=$(OUT_FILE_NAME); \
	export IN_PRJ=$(OUT); \
	export PRJ=$(OUT)2d; \
	export OUT_PRJ=tiff; \
	make Projection3DImage;

##### Commands(Input to Output) #####

