#This is a minimal make file.
#anything that starts with a # is a comment
#
#it should be easy to maintain.
#to generate the dependancies automatically 
#run "make depend"
#
#
#To clean up the directory 
#run "make clean"
#your responsibilities as a programmer:
#
# Run make depend whenever:
#	You add files to the project
#	You change what files are included in a source file
#
# make clean whenever you change this makefile.
#

#Setup the project root name
#This will built NAME.x and save it as $(NBROOT)/bin/NAME.x
NAME	= TimeSliceProfiler
#CSRCS   := main.c
#Uncomment and modify these lines if you have CPP or S files.
CXXSRCS := main.cpp \
			  TimeProfiler.cpp	
#ASRCS := foo.s

#include the file that does all of the automagic work!
include $(NBROOT)/make/main.mak


