#
#	This is Main Makefile for !!Command!!.
#
#		Created by template !!Version!!
#

#### Root Makefile ####
MAKE_ROOT=!!Command!!

#### Input extention ####
INI=ini

#### 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/XXXX.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::

all::
	make Initial;
	make Exe;

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