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

#### Root Makefile ####
MAKE_ROOT=!!Command!!
TOOLS_CLASS=!!Class!!
TOOLS_COMMAND=$(MAKE_ROOT)
OBJECTS_GROUP=!!Group!!
OBJECTS_CLASS=!!Class!!
OBJECTS_COMMAND=l$(MAKE_ROOT)

#### 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 ${EOS_HOME}/tutorial/TIPS/Debugger/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
# By make Initial, Create input data for this command.
Initial::
	make InitialData;

# By make Exe, Execute the sample of this command.
Exe::

# By make Final, Make visualize Output for this command.
Final::
	

# By make all, Initial -> Exe -> Final.
all::
	make Initial;
	make Exe;
	make Final;

help_!!Command!!::
	@echo
	@echo "Makefile for !!Command!!"
	@echo "This is Main Makefile for !!Command!!."
	@echo
	@echo "	(Command):"
	@echo "		Initial:		Create input data for this command."
	@echo "			(Setting Data):"
	@echo "			INI:		input extention for Initial"
	@echo
	@echo "		Exe:			Execute the sample of this command."
	@echo
	@echo "		Final:			Make visualize Output for this command."
	@echo
	@echo "		all:			Initial -> Exe -> Final."
	@echo
	@echo "		help:			Show this help."
	@echo "		help_XXXX:		Show XXXX help."
	@echo
	@echo "	(Setting Data):"
	@echo "		FILE_NAME:		filename of input"

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