mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
33 lines
947 B
Makefile
33 lines
947 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@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
HOST_PROGRAM = file_id
|
|
|
|
LOCAL_INCLUDES = \
|
|
-I$(srcdir)/../google-breakpad/src \
|
|
-I$(srcdir)/../google-breakpad/src/common/linux \
|
|
$(NULL)
|
|
|
|
HOST_CPPSRCS = \
|
|
file_id.cc \
|
|
$(NULL)
|
|
|
|
HOST_LIBS += \
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/linux/$(LIB_PREFIX)host_breakpad_linux_common_s.$(LIB_SUFFIX) \
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/$(LIB_PREFIX)host_breakpad_common_s.$(LIB_SUFFIX) \
|
|
$(NULL)
|
|
|
|
#XXX: bug 554854 causes us to be unable to run binaries on the build slaves
|
|
# due to them having an older libstdc++
|
|
HOST_LDFLAGS += -static
|
|
|
|
include $(topsrcdir)/config/rules.mk
|