1# This Source Code Form is subject to the terms of the Mozilla Public
2# License, v. 2.0. If a copy of the MPL was not distributed with this
3# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5# This directory is producing a framework as a target. The output of this
6# framework will be located here.
7FRAMEWORK_DIR := $(DIST)/package/thunderbird.mdimporter
8
9STRING_FILES := $(srcdir)/English.lproj/InfoPlist.strings $(srcdir)/English.lproj/schema.strings
10STRING_DEST := $(FRAMEWORK_DIR)/Contents/Resources/English.lproj
11INSTALL_TARGETS += STRING
12
13SCHEMA_FILES := $(srcdir)/schema.xml
14SCHEMA_DEST := $(FRAMEWORK_DIR)/Contents/Resources
15INSTALL_TARGETS += SCHEMA
16
17PLIST_FILES := $(srcdir)/Info.plist
18PLIST_DEST := $(FRAMEWORK_DIR)/Contents
19INSTALL_TARGETS += PLIST
20
21CFLAGS += -mmacosx-version-min=$(MACOSX_DEPLOYMENT_TARGET)
22# We don't need mozglue
23WRAP_LDFLAGS :=
24
25include $(moztopsrcdir)/config/rules.mk
26
27