mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
431 B
Makefile
17 lines
431 B
Makefile
|
OBJDIR_ICC = $(MOZ_OBJDIR)/js-icc
|
||
|
OBJDIR_X86 = $(MOZ_OBJDIR)/i386
|
||
|
|
||
|
include $(OBJDIR_X86)/config/autoconf.mk
|
||
|
include $(TOPSRCDIR)/config/config.mk
|
||
|
|
||
|
ifdef MOZ_DEBUG
|
||
|
DBGTAG = Debug
|
||
|
else
|
||
|
DBGTAG =
|
||
|
endif
|
||
|
|
||
|
# Just copy the icc-produced libmozjs.dylib over
|
||
|
postflight_all:
|
||
|
echo "Postflight: copying libmozjs.dylib..."
|
||
|
$(INSTALL) $(OBJDIR_ICC)/dist/bin/libmozjs.dylib $(OBJDIR_X86)/dist/$(MOZ_APP_DISPLAYNAME)$(DBGTAG).app/Contents/MacOS/
|