~ubuntu-branches/ubuntu/precise/lightning-extension/precise-security

« back to all changes in this revision

Viewing changes to mozilla/config/baseconfig.mk

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-09-03 14:00:01 UTC
  • mfrom: (1.3.6)
  • Revision ID: package-import@ubuntu.com-20120903140001-319alazkdaxkicwi
Tags: 1.8+build1-0ubuntu0.12.04.1
* New upstream stable release to support Thunderbird 16 (CALENDAR_1_8_BUILD1)
  - LP: #1062587

* Add extra Makefiles that are needed for the build
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDED_AUTOCONF_MK = 1
 
2
 
 
3
includedir := $(includedir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
 
4
idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
 
5
installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
 
6
sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION)
 
7
DIST = $(DEPTH)/dist
 
8
 
 
9
# We do magic with OBJ_SUFFIX in config.mk, the following ensures we don't
 
10
# manually use it before config.mk inclusion
 
11
_OBJ_SUFFIX := $(OBJ_SUFFIX)
 
12
OBJ_SUFFIX = $(error config/config.mk needs to be included before using OBJ_SUFFIX)
 
13
 
 
14
# We only want to do the pymake sanity on Windows, other os's can cope
 
15
ifeq ($(HOST_OS_ARCH),WINNT)
 
16
# Ensure invariants between GNU Make and pymake
 
17
# Checked here since we want the sane error in a file that
 
18
# actually can be found regardless of path-style.
 
19
ifeq (_:,$(.PYMAKE)_$(findstring :,$(srcdir)))
 
20
$(error Windows-style srcdir being used with GNU make. Did you mean to run $(topsrcdir)/build/pymake/make.py instead? [see-also:     https://developer.mozilla.org/en/Gmake_vs._Pymake])
 
21
endif
 
22
ifeq (1_a,$(.PYMAKE)_$(firstword a$(subst /, ,$(srcdir))))
 
23
$(error MSYS-style srcdir being used with Pymake. Did you mean to run GNU Make instead? [see-also: https://developer.mozilla.org/    en/Gmake_vs._Pymake])
 
24
endif
 
25
endif # WINNT