gecko/js/jsd/Makefile.in
Nicholas Nethercote d05b248e0f Bug 647367 - Sequester jshash.{h,cpp} in js/jsd/ (attempt 2). r=luke.
--HG--
rename : js/src/jshash.cpp => js/jsd/jshash.cpp
rename : js/src/jshash.h => js/jsd/jshash.h
2012-07-18 17:38:10 -07:00

60 lines
995 B
Makefile

#!gmake
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DEPTH = @DEPTH@
topsrcdir = @top_srcdir@
VPATH = @srcdir@
srcdir = @srcdir@
relativesrcdir = @relativesrcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = jsdebug
LIBRARY_NAME = jsd
DIRS = idl
CPPSRCS = \
jsd_xpc.cpp \
jshash.cpp
IS_COMPONENT = 1
LIBXUL_LIBRARY = 1
MODULE_NAME = JavaScript_Debugger
EXPORT_LIBRARY = 1
XPCSHELL_TESTS = test
# REQUIRES = java js
EXPORTS = jsdebug.h
ifdef JS_THREADSAFE
DEFINES += -DJS_THREADSAFE
endif
CSRCS = \
jsdebug.c \
jsd_atom.c \
jsd_high.c \
jsd_hook.c \
jsd_lock.c \
jsd_obj.c \
jsd_scpt.c \
jsd_stak.c \
jsd_step.c \
jsd_text.c \
jsd_val.c \
$(NULL)
ifdef ENABLE_TESTS
TOOL_DIRS += test
endif
include $(topsrcdir)/config/rules.mk
DEFINES += -DEXPORT_JSD_API