#
# This is Makefile of gmon for Linux
#
#

TOPDIR=../../../..

override STATIC:=false
override SHARED:=false
override DEBUG:=false
override CHECKER:=false

# That is fake for SUBDIR.
JUMP_LIB=libgmon

PROFILE_OPT_CFLAGS=-O6 -fno-omit-frame-pointer

include $(TOPDIR)/Makeconfig
include $(TOPDIR)/Makerules

PROFILE_LIB=$(PROFILE_DIR)/libgmon.a

DIRS=
SRC1S=gmon.c profil.c
SRC3S=_mcount.S
SRCS= $(SRC1S) $(SRC3S)
ASMS= $(SRC1S:.c=.s)
OBJS= $(SRC1S:.c=.o) $(SRC3S:.S=.o)
ALIASES=

include $(TOPDIR)/Maketargets
