2011-06-20 12:38:46 -07:00
|
|
|
# -*- makefile -*-
|
2007-03-22 10:30:00 -07:00
|
|
|
#
|
2012-05-21 04:12:37 -07:00
|
|
|
# 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/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2007-03-22 10:30:00 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = build
|
|
|
|
|
2012-04-29 23:03:59 -07:00
|
|
|
ifdef STDCXX_COMPAT
|
|
|
|
DIRS += stdc++compat
|
|
|
|
endif
|
|
|
|
|
2011-03-14 06:41:41 -07:00
|
|
|
ifdef USE_ELF_HACK
|
2012-04-29 23:03:59 -07:00
|
|
|
DIRS += elfhack
|
2011-01-24 00:56:40 -08:00
|
|
|
endif
|
|
|
|
|
2011-11-30 10:37:57 -08:00
|
|
|
TEST_DIRS = test
|
2011-06-20 12:38:46 -07:00
|
|
|
|
2012-04-29 23:05:34 -07:00
|
|
|
SDK_BINARY = run-mozilla.sh
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2007-08-03 07:46:17 -07:00
|
|
|
libs:: $(srcdir)/run-mozilla.sh
|
2007-03-22 10:30:00 -07:00
|
|
|
$(INSTALL) $< $(DIST)/bin
|
2011-06-20 12:38:46 -07:00
|
|
|
|
|
|
|
# EOF
|