mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
70 lines
1.3 KiB
Makefile
70 lines
1.3 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/.
|
|
|
|
EXTRACSRCS = tmreader.c
|
|
EXTRACPPSRCS = adreader.cpp
|
|
|
|
ifndef MOZ_PROFILE_GENERATE
|
|
|
|
PROGCSRCS = \
|
|
spacetrace.c \
|
|
spacecategory.c \
|
|
formdata.c \
|
|
$(NULL)
|
|
|
|
PROGOBJS = $(PROGCSRCS:.c=.$(OBJ_SUFFIX))
|
|
endif
|
|
|
|
CPPSRCS += $(EXTRACPPSRCS)
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/config/os2
|
|
endif
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
LIBS += \
|
|
$(LIBS_DIR) \
|
|
tmreader.$(OBJ_SUFFIX) \
|
|
adreader.$(OBJ_SUFFIX) \
|
|
$(XPCOM_GLUE_LDOPTS) \
|
|
$(NSPR_LIBS) \
|
|
$(NULL)
|
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
|
LIBS += $(DIST)/bin/XUL
|
|
endif
|
|
|
|
ifdef HAVE_BOUTELL_GD
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
LOCAL_INCLUDES += \
|
|
-I'$(HAVE_BOUTELL_GD)' \
|
|
$(NULL)
|
|
LIBS += \
|
|
-lmozz_s \
|
|
'$(HAVE_BOUTELL_GD)/gd.lib' \
|
|
$(NULL)
|
|
else
|
|
LIBS += \
|
|
-lgd \
|
|
$(NULL)
|
|
endif
|
|
|
|
DEFINES += \
|
|
-DHAVE_BOUTELL_GD \
|
|
$(NULL)
|
|
endif
|
|
|
|
EXTRA_DEPS = $(EXTRACSRCS:.c=.$(OBJ_SUFFIX)) $(EXTRACPPSRCS:.cpp=.$(OBJ_SUFFIX))
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# install rules.txt along with spacetrace executable
|
|
libs:: rules.txt
|
|
$(INSTALL) $< $(DIST)/bin
|
|
|
|
libs:: spacetrace.css
|
|
$(INSTALL) $< $(DIST)/bin/res
|