2001-09-08 18:29:24 +00:00
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Netscape 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/NPL/
|
|
|
|
#
|
|
|
|
# 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 Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
|
|
|
# Communications Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
#
|
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2002-06-06 20:28:14 +00:00
|
|
|
REQUIRES = xpcom \
|
|
|
|
$(NULL)
|
2001-09-08 18:29:24 +00:00
|
|
|
|
2002-04-16 23:36:47 +00:00
|
|
|
SIMPLECSRCS += \
|
2001-09-08 18:29:24 +00:00
|
|
|
bloatblame.c \
|
|
|
|
leakstats.c \
|
2002-04-16 23:36:47 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
SIMPLE_PROGRAMS = $(SIMPLECSRCS:.c=$(BIN_SUFFIX))
|
|
|
|
|
|
|
|
CSRCS = \
|
2001-11-15 22:40:53 +00:00
|
|
|
spacetrace.c \
|
2002-04-16 23:36:47 +00:00
|
|
|
spacecategory.c \
|
2002-05-11 01:24:52 +00:00
|
|
|
formdata.c \
|
2001-09-08 18:29:24 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2002-05-02 19:43:09 +00:00
|
|
|
PROGRAM = spacetrace$(BIN_SUFFIX)
|
2001-09-08 18:29:24 +00:00
|
|
|
|
2002-02-14 22:56:03 +00:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/config/os2
|
|
|
|
endif
|
|
|
|
|
2001-09-08 18:29:24 +00:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
|
|
|
LIBS += \
|
2002-02-14 22:56:03 +00:00
|
|
|
$(LIBS_DIR) \
|
|
|
|
tmreader.$(OBJ_SUFFIX) \
|
2002-02-26 09:26:10 +00:00
|
|
|
$(XPCOM_LIBS) \
|
2001-09-08 18:29:24 +00:00
|
|
|
$(NSPR_LIBS) \
|
|
|
|
$(NULL)
|
|
|
|
|
2001-11-15 22:40:53 +00:00
|
|
|
ifdef HAVE_BOUTELL_GD
|
2002-04-16 21:50:01 +00:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I"$(HAVE_BOUTELL_GD)" \
|
|
|
|
$(NULL)
|
|
|
|
LIBS += \
|
|
|
|
-lmozz_s \
|
|
|
|
"$(HAVE_BOUTELL_GD)/gd.lib" \
|
|
|
|
$(NULL)
|
|
|
|
else
|
2001-11-15 22:40:53 +00:00
|
|
|
LIBS += \
|
|
|
|
-lgd \
|
|
|
|
$(NULL)
|
2002-04-16 21:50:01 +00:00
|
|
|
endif
|
2001-11-15 22:40:53 +00:00
|
|
|
|
|
|
|
DEFINES += \
|
|
|
|
-DHAVE_BOUTELL_GD \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2002-02-14 22:56:03 +00:00
|
|
|
EXTRA_DEPS = tmreader.$(OBJ_SUFFIX)
|
2002-07-01 02:15:11 +00:00
|
|
|
GARBAGE += tmreader.$(OBJ_SUFFIX)
|
2001-09-08 18:29:24 +00:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
2002-04-17 01:03:44 +00:00
|
|
|
|
|
|
|
# install rules.txt along with spacetrace executable
|
|
|
|
libs:: rules.txt
|
|
|
|
$(INSTALL) $< $(DIST)/bin
|