#
#	This is Main Makefile for FFTExpression.
#
#		Created by template v2.0.2p0050
#

#### Root Makefile ####
MAKE_ROOT=FFTExpression

#### Input extention ####
INI=ini
IN_FFTEX=$(INI)
FFTEX=fft
OUT_FFTEX=tiff

#### Suffixes rule ####
# Defined at Sub

#### INCLUDE ####
# Help-include-file must always be put on top.
-include ${EOS_HOME}/tutorial/TIPS/Help/Makefile/Makefile-lib
-include Makefile-lib

#### Definition ####
# Path of Input File
# Basically, use a linked data from /SampleData.
INPUT_PATH=${EOS_HOME}/tutorial/SampleData/1VOM-N.mrc

### FileData
FILE_NAME=Input

#### Rules of the list created ####
# Defined at Sub

##### Commands #####
# Defined at Sub basically
Initial::
	$(RM) $(FILE_NAME).$(INI);
	ln -s $(INPUT_PATH) $(FILE_NAME).$(INI);

Exe::
	export FFTEX_FILE_NAME=$(FILE_NAME); \
	make FFTExpression;

all::
	make Initial;
	make Exe;

##### Commands(Input to Output) #####
# Defined at Sub
