mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
#! gmake
|
|
#
|
|
# The contents of this file are subject to the Mozilla Public License
|
|
# Version 1.1 (the "License"); you may not use this file except in
|
|
# compliance with the License. You may obtain a copy of the License
|
|
# at http://www.mozilla.org/MPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS IS"
|
|
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
# the License for the specific language governing rights and
|
|
# limitations under the License.
|
|
#
|
|
# The Initial Developer of the Original Code is Kipp E.B. Hickman.
|
|
#
|
|
# Autoconf version of original Makefile
|
|
# Fri Sep 24 23:44:10 PDT 1999 <mcafee@netscape.com>
|
|
#
|
|
|
|
DEPTH = ../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
DIRS = stub
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
PROGRAM = jprof
|
|
|
|
CPPSRCS = \
|
|
bfd.cpp \
|
|
coff.cpp \
|
|
elf.cpp \
|
|
leaky.cpp \
|
|
strset.cpp \
|
|
intcnt.cpp \
|
|
$(NULL)
|
|
|
|
LIBS = \
|
|
-lbfd \
|
|
-liberty \
|
|
$(NULL)
|
|
|
|
HELPER_SCRIPTS = jprofsig
|
|
HELPER_SCRIPTS := $(addprefix $(srcdir)/, $(HELPER_SCRIPTS))
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
INCLUDES += \
|
|
-I$(srcdir)/stub \
|
|
$(NULL)
|
|
|
|
install::
|
|
$(INSTALL) -m 555 $(HELPER_SCRIPTS) $(DIST)/bin
|