changing makefiles to build test apps on win32

This commit is contained in:
mjudge%netscape.com 1998-11-24 19:26:45 +00:00
Родитель 0a820f9aa3
Коммит 455eb7c6e8
3 изменённых файлов: 18 добавлений и 12 удалений

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

@ -18,6 +18,6 @@
DEPTH=..\..
IGNORE_MANIFEST=1
DIRS=public src
DIRS=public src tests
include <$(DEPTH)\config\rules.mak>

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

@ -18,7 +18,7 @@
DEPTH=..\..\..
IGNORE_MANIFEST=1
LIBRARY_NAME=ender
LIBRARY_NAME=txmgr
CPPSRCS = \
nsTransactionManager.cpp \
@ -32,9 +32,12 @@ CPP_OBJS = \
MODULE=txmgr
REQUIRES=xpcom
REQUIRES=xpcom base raptor
LINCS=-I$(PUBLIC)\xpcom
LINCS=-I$(PUBLIC)\xpcom \
-I$(PUBLIC)\txmgr \
-I$(PUBLIC)\base \
-I$(PUBLIC)\raptor
MAKE_OBJ_TYPE = DLL
DLLNAME = txmgr
@ -48,7 +51,7 @@ LCFLAGS = \
DEFINES = $(DEFINES) -DNOT_PRODUCTION_CODE -DUSE_EXPERIMENTAL_SMART_POINTERS
# These are the libraries we need to link with to create the dll
LLIBS=$(DIST)\lib\xpcom32.lib
LLIBS=$(DIST)\lib\xpcom32.lib $(DIST)\lib\raptorbase.lib
!if "$(MOZ_BITS)"=="32" && defined(MOZ_DEBUG) && defined(GLOWCODE)
LLIBS=$(LLIBS) $(GLOWDIR)\glowcode.lib

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

@ -15,25 +15,28 @@
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
DEPTH=..\..
DEPTH=..\..\..
IGNORE_MANIFEST=1
DIRS = dynamic windows services
MAKE_OBJ_TYPE = EXE
PROG1 = .\$(OBJDIR)\TestTXMgr.exe
PROGRAMS = $(PROG1)
LCFLAGS=-DUSE_NSREG
REQUIRES=libraptorbase
REQUIRES=xpcom raptor dom base
LINCS=-I..\public
LINCS=-I$(PUBLIC)\txmgr \
-I$(PUBLIC)\xpcom \
-I$(PUBLIC)\raptor \
-I$(PUBLIC)\js \
-I$(PUBLIC)\dom \
-I..\src
LLIBS= \
$(DIST)\lib\txmgr32.lib \
$(DIST)\lib\raptorbase32.lib \
$(DIST)\lib\txmgr.lib \
$(DIST)\lib\raptorbase.lib \
$(DIST)\lib\xpcom32.lib
!if "$(MOZ_BITS)"=="32" && defined(MOZ_DEBUG) && defined(GLOWCODE)
LLIBS=$(LLIBS) $(GLOWDIR)\glowcode.lib