#
# This MAKEFILE was automatically built with Falch.net DeveloperStudio, and
# any changes you make in this file will be overwritten the next time you
# build this project.
#
# To edit this file manually, turn off "Automatically rebuild makefile on each
# build" in the "Project Properties" dialog ("Project" -> "Properties" ->
# "Advanced" Tab)
#

#  
#  Target ALL
#  
all : ./Debug/OnTimer.prc

#  
#  Target Remove temporary files
#  
temp : 
	cd ./Debug/ && \
	rm -f clean ./Debug/main.o ./Debug/OnTimer.ro ./Debug/OnTimer

#  
#  Target Clean
#  
clean : 
	rm -f ./Debug/main.o ./Debug/OnTimer.ro ./Debug/OnTimer ./Debug/OnTimer.prc

#  
#  Rule for building sourcefile main.c
#  
./Debug/main.o : main.c
	@echo "Compiling main.c..." && \
	m68k-palmos-gcc -palmos4.0 -g -Wall  -I/cygdrive/c/Program\ Files/Falch.net/DeveloperStudio\ 2.6/PalmDev/MathLib/Src -I/cygdrive/c/Program\ Files/Falch.net/DeveloperStudio\ 2.6/bin/POSE -mdebug-labels -o./Debug/main.o -c main.c -MD
	@mv  main.d ./Debug/main.d

#  
#  Rule for building resources
#  
./Debug/OnTimer.ro : OnTimer.rcp
	@pilrc -q -ro OnTimer.rcp ./Debug/OnTimer.ro

#  
#  Rule for Linking the project
#  
./Debug/OnTimer : ./Debug/main.o /cygdrive/d/DOCS/artikel/hack5/OnTimer/OnTimer.FNP
	@echo "Linking..." && \
	m68k-palmos-gcc ./Debug/main.o -palmos4.0 -g -o "$@"

#  
#  Rule for building Palm OS Program File
#  
./Debug/OnTimer.prc : ./Debug/OnTimer.ro ./Debug/OnTimer
	@echo "Building program file ./Debug/OnTimer.prc..." && \
	build-prc  -t appl -o ./Debug/OnTimer.prc -n "OnTimer" -c ctOT ./Debug/OnTimer.ro ./Debug/OnTimer
