1998-12-03 04:37:24 +03:00
|
|
|
#!nmake
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Netscape Public License
|
|
|
|
# Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
# compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
# http://www.mozilla.org/NPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# NPL.
|
|
|
|
#
|
|
|
|
# The Initial Developer of this code under the NPL is Netscape
|
|
|
|
# Communications Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
# Reserved.
|
|
|
|
|
|
|
|
DEPTH=..\..
|
|
|
|
IGNORE_MANIFEST=1
|
|
|
|
|
|
|
|
DEFINES=-DWIN32_LEAN_AND_MEAN
|
|
|
|
MODULE=raptor
|
|
|
|
|
|
|
|
CPPSRCS= \
|
|
|
|
nsAppRunner.cpp \
|
|
|
|
nsSetupRegistry.cpp \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
CPP_OBJS= \
|
|
|
|
.\$(OBJDIR)\nsAppRunner.obj \
|
|
|
|
.\$(OBJDIR)\nsSetupRegistry.obj \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
LINCS=-I$(PUBLIC)\raptor \
|
|
|
|
-I$(PUBLIC)\xpcom \
|
|
|
|
-I$(PUBLIC)\base \
|
1999-06-28 14:35:57 +04:00
|
|
|
!ifdef NECKO
|
|
|
|
-I$(PUBLIC)\necko \
|
|
|
|
!else
|
1998-12-03 04:37:24 +03:00
|
|
|
-I$(PUBLIC)\netlib \
|
1999-06-28 14:35:57 +04:00
|
|
|
!endif
|
1998-12-03 04:37:24 +03:00
|
|
|
-I$(PUBLIC)\pref \
|
|
|
|
-I$(PUBLIC)\js \
|
1998-12-30 03:09:03 +03:00
|
|
|
-I$(PUBLIC)\dom \
|
1999-03-16 10:15:37 +03:00
|
|
|
-I$(PUBLIC)\pref \
|
1999-04-10 10:43:26 +04:00
|
|
|
-I$(PUBLIC)\profile \
|
1998-12-30 03:09:03 +03:00
|
|
|
-I$(PUBLIC)\rdf \
|
1999-01-26 10:46:51 +03:00
|
|
|
-I$(PUBLIC)\editor \
|
|
|
|
-I$(PUBLIC)\caps \
|
|
|
|
-I$(PUBLIC)\plugin \
|
|
|
|
-I$(PUBLIC)\java \
|
1999-01-30 19:52:29 +03:00
|
|
|
-I$(PUBLIC)\uconv \
|
1999-02-04 18:55:58 +03:00
|
|
|
-I$(PUBLIC)\strres \
|
|
|
|
-I$(PUBLIC)\locale \
|
1999-02-17 18:30:26 +03:00
|
|
|
-I$(PUBLIC)\lwbrk \
|
1999-02-04 18:55:58 +03:00
|
|
|
-I$(PUBLIC)\unicharutil \
|
|
|
|
-I$(PUBLIC)\intl \
|
1999-02-03 19:50:05 +03:00
|
|
|
-I$(PUBLIC)\appcores \
|
1999-03-12 02:30:49 +03:00
|
|
|
-I$(PUBLIC)\walletlib \
|
1999-05-05 09:14:16 +04:00
|
|
|
-I$(PUBLIC)\xpfe\components \
|
1999-07-01 05:48:08 +04:00
|
|
|
-I$(PUBLIC)\oji \
|
|
|
|
!ifdef MOZ_FULLCIRCLE
|
|
|
|
-I$(MOZ_TOOLS)\include \
|
|
|
|
!endif
|
|
|
|
$(NULL)
|
1998-12-30 03:09:03 +03:00
|
|
|
# -I..\browser
|
1998-12-03 04:37:24 +03:00
|
|
|
|
|
|
|
MAKE_OBJ_TYPE = EXE
|
|
|
|
PROGRAM = .\$(OBJDIR)\apprunner.exe
|
|
|
|
|
|
|
|
LCFLAGS = \
|
|
|
|
$(LCFLAGS) \
|
|
|
|
$(DEFINES) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
# These are the libraries we need to link with to create the exe
|
|
|
|
LLIBS= \
|
1999-06-28 14:35:57 +04:00
|
|
|
$(DIST)\lib\xpcom.lib \
|
1999-02-19 00:53:31 +03:00
|
|
|
$(DIST)\lib\raptorgfxwin.lib \
|
1999-06-28 14:35:57 +04:00
|
|
|
!ifdef NECKO
|
|
|
|
$(DIST)\lib\neckoutil_s.lib \
|
|
|
|
!else
|
1998-12-03 04:37:24 +03:00
|
|
|
$(DIST)\lib\netlib.lib \
|
1999-07-01 05:48:08 +04:00
|
|
|
!endif
|
|
|
|
!ifdef MOZ_FULLCIRCLE
|
|
|
|
$(MOZ_TOOLS)\lib\fulls32.lib \
|
1999-06-28 14:35:57 +04:00
|
|
|
!endif
|
1998-12-03 04:37:24 +03:00
|
|
|
$(LIBNSPR) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|
|
|
|
|
|
|
|
install:: $(PROGRAM)
|
|
|
|
$(MAKE_INSTALL) $(PROGRAM) $(DIST)\bin
|
|
|
|
|
|
|
|
clobber::
|
|
|
|
rm -f $(DIST)\bin\apprunner.exe
|