r=cls
From Jessica Blanco -start building os2Embed
This commit is contained in:
mkaply%us.ibm.com 2003-04-02 22:53:16 +00:00
Родитель f112e9d73d
Коммит fd9027c377
3 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -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