mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
# 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 = ../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
MODULE = metro
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
DIRS = commandexecutehandler linktool
|
|
|
|
ifdef ENABLE_TESTS
|
|
DIRS += testing
|
|
endif
|
|
|
|
export::
|
|
$(NSINSTALL) $(srcdir)/resources.pri $(DIST)/bin
|
|
$(RM) $(DIST)/bin/VisualElementsManifest.xml
|
|
$(PYTHON) $(topsrcdir)/config/Preprocessor.py -Fsubstitution $(DEFINES) $(ACDEFINES) -DMOZ_APP_DISPLAYNAME=${MOZ_APP_DISPLAYNAME} \
|
|
$(srcdir)/VisualElementsManifest.xml.in > $(DIST)/bin/VisualElementsManifest.xml
|
|
|
|
install::
|
|
$(NSINSTALL) $(srcdir)/resources.pri $(DIST)/bin
|
|
|
|
# bug 744566
|
|
# $(RM) $(DIST)/bin/resources.pri
|
|
# $(MAKEPRI) new -v -pr $(srcdir)/tileresources -cf $(srcdir)/priconfig.xml -mn $(srcdir)/AppManifest.xml -of $(DIST)/bin/resources.pri -o
|
|
|
|
include $(topsrcdir)/config/rules.mk
|