Initial check-in to mozilla tree: JSRef development is migrating from JSFUN13_BRANCH of /m/src repository to /m/pub git-svn-id: svn://10.0.0.236/trunk@582 18797224-902f-48f8-a5cc-f745e15eee43
45 lines
1.3 KiB
Makefile
45 lines
1.3 KiB
Makefile
#
|
|
# 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.
|
|
|
|
# Config for Windows NT using MS Visual C++ (version?)
|
|
|
|
CC = cl
|
|
|
|
RANLIB = echo
|
|
|
|
#.c.o:
|
|
# $(CC) -c -MD $*.d $(CFLAGS) $<
|
|
|
|
CPU_ARCH = x86 # XXX fixme
|
|
GFX_ARCH = win32
|
|
|
|
OS_CFLAGS = -DXP_PC -DWIN32 -D_WINDOWS -D_WIN32
|
|
OS_LIBS = -lm -lc
|
|
|
|
PREBUILT_CPUCFG = 1
|
|
USE_MSVC = 1
|
|
|
|
LIB_LINK_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
|
|
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib oldnames.lib /nologo\
|
|
/subsystem:windows /dll /incremental:yes /debug\
|
|
/machine:I386
|
|
|
|
CAFEDIR = t:/cafe
|
|
JCLASSPATH = $(CAFEDIR)/Java/Lib/classes.zip
|
|
JAVAC = $(CAFEDIR)/Bin/sj.exe
|
|
JAVAH = $(CAFEDIR)/Java/Bin/javah.exe
|
|
JCFLAGS = -I$(CAFEDIR)/Java/Include -I$(CAFEDIR)/Java/Include/win32
|