# -*-mode: Makefile;-*-  ;; Have EMACS always use makefile-mode for this file. 
#
#   makeVar
#

# Don't change anything between the '####' lines!
###############################################################################
_DOT_DOT:=../${_DOT_DOT}
-include ${_DOT_DOT}makeVar
-include makeDepend
###############################################################################

# Add here your project settings, plese specify each entry in a separated
# line (use backslash to continue the lines).


# Please add here all the directories with absolute path
# (e.g. -I/usr/local/include) that contain include files needed by the sources.
ABS_INCLUDES:= ${ABS_INCLUDES}

# Please add here all the directories with relative path
# (e.g. -I../MyModule/src) that contain include files needed by the sources.
REL_INCLUDES:= $(REL_INCLUDES:-I%=-I../%) \
               -I../src


# Debug status
# This variable takes two values: TRUE or FALSE
DEBUG_ON:=${DEBUG_ON}

# Debugging flags
DEBUG:= ${DEBUG}
# Non-Debugging flags
NODEBUG:= ${NODEBUG}

# Compilation defines for C (e.g. -DASSERT, -DEXCEPTION, -DREENTRANT)
CDEFINES:= ${CDEFINES}

# Flags for C compiler
CFLAGS:= ${CFLAGS}

# Compilation defines for C++ (e.g. -DASSERT, -DEXCEPTION, -DREENTRANT)
CPPDEFINES:= ${CPPDEFINES}

# Flags for C++ compiler
CPPFLAGS:= ${CPPFLAGS}


# Set the priority level
DIR_PRIORITY:=
DIR_LOWPRIORITY:=
SKIP_DIRECTORIES:=

# Additional rules for creation of Meta objects

../obj/moc_iclWidget.o : iclWidget.h iclWidget.cpp
	${PRE_CMD} rm -rf moc_iclWidget.cpp
	${PRE_CMD}${CMD_ECHO} "creating moc file moc_iclWidget.cpp [specialized]"
	${PRE_CMD}${QTDIR}/bin/moc -o moc_iclWidget.cpp iclWidget.h
	${PRE_CMD}${CMD_ECHO} "Building objects from: ${_CURR_DIR}/moc_iclWidget.cpp [specialized]"
	${PRE_CMD}${CMD_CCPP} ${CPPFLAGS} ${DEBUG} ${CPPDEFINES} -c moc_iclWidget.cpp -o $@ \
	${REL_INCLUDES} ${ABS_INCLUDES}

../obj/iclWidget.o : iclWidget.cpp iclWidget.h ../obj/moc_iclWidget.o
	${PRE_CMD}${CMD_ECHO} "Building objects from: ${_CURR_DIR}/$< [specialized]"
	${PRE_CMD}${CMD_CCPP} ${CPPFLAGS} ${DEBUG} ${CPPDEFINES} -c $< -o $@ \
	${REL_INCLUDES} ${ABS_INCLUDES}


../obj/moc_iclMouseInteractionReceiver.o : iclMouseInteractionReceiver.h iclMouseInteractionReceiver.cpp
	${PRE_CMD} rm -rf moc_iclMouseInteractionReceiver.cpp
	${PRE_CMD}${CMD_ECHO} "creating moc file moc_iclMouseInteractionReceiver.cpp [specialized]"
	${PRE_CMD}${QTDIR}/bin/moc -o moc_iclMouseInteractionReceiver.cpp iclMouseInteractionReceiver.h
	${PRE_CMD}${CMD_ECHO} "Building objects from: ${_CURR_DIR}/moc_iclMouseInteractionReceiver.cpp [specialized]"
	${PRE_CMD}${CMD_CCPP} ${CPPFLAGS} ${DEBUG} ${CPPDEFINES} -c moc_iclMouseInteractionReceiver.cpp -o $@ \
	${REL_INCLUDES} ${ABS_INCLUDES}

../obj/iclMouseInteractionReceiver.o : iclMouseInteractionReceiver.cpp iclMouseInteractionReceiver.h ../obj/moc_iclMouseInteractionReceiver.o
	${PRE_CMD}${CMD_ECHO} "Building objects from: ${_CURR_DIR}/$< [specialized]"
	${PRE_CMD}${CMD_CCPP} ${CPPFLAGS} ${DEBUG} ${CPPDEFINES} -c $< -o $@ \
	${REL_INCLUDES} ${ABS_INCLUDES}