mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
parent
ebbbfcf54f
commit
c7c47f9531
@ -280,6 +280,13 @@ tier_99_dirs += embedding/tests
|
||||
endif
|
||||
endif
|
||||
|
||||
# os2embed
|
||||
ifeq ($(OS_ARCH),OS2)
|
||||
ifneq (,$(ENABLE_TESTS)$(MOZILLA_OFFICIAL))
|
||||
tier_99_dirs += embedding/tests
|
||||
endif
|
||||
endif
|
||||
|
||||
else
|
||||
|
||||
# Standalone build
|
||||
|
@ -62,6 +62,10 @@ ifeq ($(OS_ARCH),WINNT)
|
||||
CPPSRCS += nsEmbedWin32.cpp
|
||||
endif
|
||||
|
||||
ifeq ($(OS_ARCH),OS2)
|
||||
CPPSRCS += nsEmbedOS2.cpp
|
||||
endif
|
||||
|
||||
# we don't want the shared lib, but we want to force the creation of a
|
||||
# static lib.
|
||||
FORCE_STATIC_LIB = 1
|
||||
|
@ -24,6 +24,11 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
ifeq ($(OS_ARCH),OS2)
|
||||
DIRS = os2Embed
|
||||
endif
|
||||
|
||||
ifeq ($(OS_ARCH),WINNT)
|
||||
DIRS = winEmbed
|
||||
|
||||
ifndef GNU_CC
|
||||
@ -31,5 +36,6 @@ ifndef NO_MFC
|
||||
DIRS += mfcembed/components mfcembed
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
Loading…
Reference in New Issue
Block a user