Import upstream u-boot 1.1.4
[u-boot.git] / board / MAI / bios_emulator / scitech / makedefs / rules / 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:   Rules makefile definitions, which define the rules used to
25 #                               build targets. We include them here at the end of the
26 #                               makefile so the generic project makefiles can override
27 #                               certain things with macros (such as linking C++ programs
28 #                               differently).
29 #
30 #############################################################################
31
32 # Take out PMLIB if we don't need to link with it
33
34 .IF $(NO_PMLIB)
35 PMLIB :=
36 .ENDIF
37
38 # Whether to link in real VBIOS library, or just the stub library
39
40 .IF $(USE_BIOS)
41 VBIOSLIB := -lvbios.lib
42 .ELSE
43 VBIOSLIB := -lvbstubs.lib
44 .END
45
46 # Require special privledges for Nucleus programs (requires root access)
47
48 .IF $(USE_NUCLEUS)
49 LDFLAGS         += -T1
50 .ENDIF
51
52 # Implicit generation rules for making object files from source files
53 %$O: %.c ;
54 .IF $(SHOW_ARGS)
55     $(CC) $(CFLAGS) $<
56 .ELSE
57     @echo $(CC) -c $<
58         +@$(CC) $(CFLAGS) $< > /dev/null
59 .ENDIF
60
61 %$O: %$P ;
62 .IF $(SHOW_ARGS)
63         $(CXX) $(CFLAGS) $<
64 .ELSE
65         @echo $(CXX) -c $<
66         +@$(CXX) $(CFLAGS) $< > /dev/null
67 .ENDIF
68
69 %$O: %$A ;
70 .IF $(SHOW_ARGS)
71     $(AS) -o $@ $(ASFLAGS) $<
72 .ELSE
73     @echo $(AS) $<
74         @$(AS) -o $@ $(ASFLAGS) $<
75 .ENDIF
76
77 # Implicit rule for building a library file
78 %$L:     ;
79 .IF $(SHOW_ARGS)
80     $(LIB) $(LIBFLAGS) -q $@ $&
81 .ELSE
82     @echo $(LIB) $@
83         +@$(LIB) $(LIBFLAGS) -q $@ $& > /dev/null
84 .ENDIF
85
86
87 # Implicit rule for building an executable file
88 %$E:     ;
89 .IF $(SHOW_ARGS)
90         $(LD) $(LDFLAGS) -o $@ $& $(EXELIBS) $(PMLIB) $(VBIOSLIB)
91 .ELSE
92         @echo wlink $@
93         +@$(LD) $(LDFLAGS) -o $@ $& $(EXELIBS) $(PMLIB) $(VBIOSLIB) > /dev/null
94 .ENDIF