Portable Object Compiler (c) 1997,98.  All Rights Reserved.


This file contains some notes that are specific to running "objc"
(pronounced as "Object Compiler") on Windows95 or WindowsNT using
the Microsoft Visual C (cl.exe) compiler.

General
-------

       The Visual C port was done by Serge Broslavsky (bros@dan.lv)
       using VC 5.0.  Probably requires at least VC 4.0 to work.

INSTALLATION
------------

	Install the files under C:\OBJC.  You can set the OBJCDIR
	environment variable, if you'd like to install the files in
	a different location.

AUTOEXEC.BAT
------------

	Add C:\OBJC\BIN to your PATH.  This directory contains OBJC.EXE
	the compiler driver, and OBJC1.EXE, the compiler proper.  It's
	also assumed that the compiler tools (nmake,link,cl etc.) are in 
	the PATH.
	
	It's also convenient to "set OBJCOPT=options" in this file, where
	options can be "-q" for example.

BISON & FLEX
------------

	Since 1.3.14, we're using the win32 ports of these tools. That is,
	the parser and scanner is no longer generated on UNIX.
	but is now generated on Windows itself from lex.lm and yacc.ym.
	
	Flex and Bison for Windows95 are available on 
	http://www.winsite.com.

	You might have to edit C:\TOOLS\SHARE\BISON.SIMPLE to define
	_alloca by including #include <malloc.h> (cfr. WATCOM readme)

Makefiles
---------

	The top level Makefile is in NMAKE make-specific format, so you
	can just type :

		"nmake"

	to start building the different components of the compiler.


Binary Driver
-------------

	There's no Bourne shell compiler driver for Windows95.  Only
	the binary, compiled, version is available (as "objc.exe").

