mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
36 lines
967 B
Makefile
36 lines
967 B
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@
|
||
|
|
||
|
CHROMEDIR = $(call core_abspath,$(DIST))/bin/chrome
|
||
|
|
||
|
include $(DEPTH)/config/autoconf.mk
|
||
|
|
||
|
TEST_DIRS += pdfjs/test
|
||
|
|
||
|
include $(topsrcdir)/config/rules.mk
|
||
|
|
||
|
exclude_files = \
|
||
|
test \
|
||
|
install.rdf \
|
||
|
bootstrap.js \
|
||
|
icon.png \
|
||
|
icon64.png \
|
||
|
$(NULL)
|
||
|
|
||
|
$(DIST)/bin/chrome/pdfjs.manifest: $(GLOBAL_DEPS)
|
||
|
printf "manifest pdfjs/chrome.manifest" > $@
|
||
|
|
||
|
libs:: $(DIST)/bin/chrome/pdfjs.manifest
|
||
|
$(PYTHON) $(topsrcdir)/config/nsinstall.py \
|
||
|
$(srcdir)/pdfjs \
|
||
|
$(foreach exclude,$(exclude_files), -X $(srcdir)/pdfjs/$(exclude)) \
|
||
|
$(DIST)/bin/chrome
|
||
|
$(PYTHON) $(MOZILLA_DIR)/config/buildlist.py \
|
||
|
$(DIST)/bin/chrome.manifest "manifest chrome/pdfjs.manifest"
|