Import upstream u-boot 1.1.4
[u-boot.git] / board / MAI / bios_emulator / scitech / makedefs / qnx4.mk
1 #############################################################################
2 #
3 #                                       SciTech Multi-platform Graphics Library
4 #
5 #  ========================================================================
6 #
7 #    The contents of this file are subject to the SciTech MGL Public
8 #    License Version 1.0 (the "License"); you may not use this file
9 #    except in compliance with the License. You may obtain a copy of
10 #    the License at http://www.scitechsoft.com/mgl-license.txt
11 #
12 #    Software distributed under the License is distributed on an
13 #    "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
14 #    implied. See the License for the specific language governing
15 #    rights and limitations under the License.
16 #
17 #    The Original Code is Copyright (C) 1991-1998 SciTech Software, Inc.
18 #
19 #    The Initial Developer of the Original Code is SciTech Software, Inc.
20 #    All Rights Reserved.
21 #
22 #  ========================================================================
23 #
24 # Descripton:   Generic DMAKE startup makefile definitions file. Assumes
25 #               that the SCITECH environment variable has been set to point
26 #               to where all our stuff is installed. You should not need
27 #               to change anything in this file.
28 #
29 #               QNX version for Watcom C.
30 #
31 #############################################################################
32
33 # Disable warnings for macros redefined here that were given
34 # on the command line.
35 __.SILENT       := $(.SILENT)
36 .SILENT         := yes
37
38 # Import enivornment variables that we use common to all compilers
39 .IMPORT .IGNORE : TEMP SHELL INCLUDE LIB SCITECH PRIVATE SCITECH_LIB
40 .IMPORT .IGNORE : DBG OPT OPT_SIZE SHW BETA CHECKED USE_QNX USE_QNX4
41 .IMPORT .IGNORE : USE_PHOTON USE_X11 USE_BIOS SHOW_ARGS MAX_WARN WC_LIBBASE
42    TMPDIR       := $(TEMP)
43
44 # Standard file suffix definitions
45 #
46 # NOTE: Qnx does not require any extension for executeable files, but you
47 #       can use an extension if you wish. We use the .x extension for building
48 #       executeable files so that we can use implicit rules to make the
49 #       makefiles simpler and more portable between systems. When you install
50 #       the files to a local bin directory, you will probably want to remove
51 #       the .x extension.
52    L            := .a           # Libraries
53    E            := .exe         # Executables
54    O            := .o           # Objects
55    A            := .asm         # Assembler sources
56    S            := .s       # GNU assembler sources
57    P            := .cpp         # C++ sources
58
59 # File prefix/suffix definitions. The following prefixes are defined, and are
60 # used primarily to abstract between the Unix style libXX.a naming convention
61 # and the DOS/Windows/OS2 naming convention of XX.lib.
62    LP           := lib      # LP - Library file prefix (name of file on disk)
63    LL           := -l           # Library link prefix (name of library on link command line)
64    LE           :=                  # Library link suffix (extension of library on link command line)
65
66 # We use the Unix shell at all times
67    SHELL                := /bin/sh
68    SHELLFLAGS   := -c
69
70 # Definition of $(MAKE) macro for recursive makes.
71    MAKE = $(MAKECMD) $(MFLAGS)
72
73 # Macro to install a library file
74    INSTALL      := cp
75
76 # DMAKE uses this recipe to remove intermediate targets
77 .REMOVE :; $(RM) -f $<
78
79 # Turn warnings back to previous setting.
80 .SILENT := $(__.SILENT)
81
82 # We dont use TABS in our makefiles
83 .NOTABS         := yes
84
85 # Define that we are compiling for QNX
86    USE_QNX      := 1
87
88 # Default commands for compiling, assembling linking and archiving.
89    CC           := wcc386
90    CFLAGS       := -I. -Iinclude $(INCLUDE)
91    CXX          := wpp386
92    AS           := nasm
93    ASFLAGS      := -t -f obj -d__FLAT__ -dSTDCALL_MANGLE -iinclude -i$(SCITECH)/include
94    LD           := cc
95    LDFLAGS      := -L.
96    LIB          := ar
97    LIBFLAGS     := rc
98
99 # Set the compiler warning level
100 .IF $(MAX_WARN)
101    CFLAGS       += -w4
102 .ELSE
103    CFLAGS       += -w1
104 .ENDIF
105
106 # Optionally turn on debugging information
107 .IF $(DBG)
108    CFLAGS       += -d2
109    LDFLAGS      += -g2
110 .ELSE
111 # NASM does not support debugging information yet
112    ASFLAGS      +=
113 .ENDIF
114
115 # Optionally turn on optimisations
116 .IF $(OPT)
117    CFLAGS       += -onatx-5r-fp5
118 .ELIF $(OPT_SIZE)
119    CFLAGS       += -onaslmr-5r-fp5
120 .ELIF $(NOOPT)
121    CFLAGS       += -od-5r
122 .END
123
124 # Compile flag for whether to build photon or non-photon lib
125 .IF $(USE_PHOTON)
126    CFLAGS       += -D__PHOTON__
127 .ENDIF
128
129 # Compile flag for whether to build X11 or non-X11 lib
130 .IF $(USE_X11)
131    CFLAGS       += -D__X11__
132 .ENDIF
133
134 # Optionally compile a beta release version of a product
135 .IF $(BETA)
136    CFLAGS       += -DBETA
137    ASFLAGS      += -dBETA
138 .ENDIF
139
140 # Target environment dependant flags
141    CFLAGS       += -D__QNX__ -D__UNIX__
142    ASFLAGS      += -d__QNX__ -d__UNIX__
143
144 # Define the base directory for library files
145
146 .IF $(CHECKED)
147   LIB_BASE_DIR  := $(SCITECH_LIB)/lib/debug
148   CFLAGS                += -DCHECKED=1
149 .ELSE
150   LIB_BASE_DIR  := $(SCITECH_LIB)/lib/release
151 .ENDIF
152
153 # Define where to install library files
154    LIB_BASE     := $(LIB_BASE_DIR)/qnx4/$(WC_LIBBASE)
155    LIB_DEST     := $(LIB_BASE)
156    LDFLAGS      += -L$(LIB_DEST)
157
158 # Place to look for PMODE library files
159
160 PMLIB           := -lpm
161
162 # Define which file contains our rules
163
164    RULES_MAK    := qnx4.mk