# include ../../Makefile.brecis
#---------------
TOPDIR := $(shell cd ../../..; pwd)
#---------------
PROG	= gprof_kernel
#---------------
CSRCS	= ${PROG}.c
#---------------
COBJS	= ${CSRCS:.c=.o}
#---------------
all:	${COBJS}
	${CC} -o ${PROG} ${COBJS}
#---------------
${COBJS}: ${CSRCS}
#---------------
clean:
	rm -f *.o ${PROG}
#---------------
install: ${PROG}
	${CP} ${PROG} ${DESTSBIN}
#---------------
# End of Makefile
