1#********************************************************************
2#**                     Microsoft Windows                          **
3#**               Copyright(c) Microsoft Corp., 1992 - 1996        **
4#********************************************************************
5
6#
7# o  This file specficies the things that are common to all the
8#    makefiles in the sub-directories
9# o  This is the GCC version of the reference implementation
10#    makefile. It has only been tested on Unix.
11#
12
13# Programs we use
14ARCHIVE=ar cr
15CC=gcc
16DEPEND=/usr/openwin/bin/makedepend
17MV=mv
18RANLIB=ranlib
19RM=/bin/rm -f
20
21# uncomment the appropriate line to decide whether you want
22# UNICODE or ansi API's
23# U_OPTS=use_unicode
24U_OPTS=no_unicode
25
26# change this setting to compile a big/small endian machine
27# Intel machines are Little Endian (lower byte first)
28# Mac, HP, SUN, etc. are Big Endian (higher byte first)
29
30#BYTE_ORDER = -DLITTLEENDIAN=1
31BYTE_ORDER = -DBIGENDIAN=1
32
33# put flags to activate/deactive debug builds here
34DBG_FLAGS = -g -DDBG=1 -DDEVL=1
35#DBG_FLAGS=-DNDEBUG
36