]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/MAI/bios_emulator/scitech/makedefs/rules/wc16.mk
* Patch by Thomas Frieden, 13 Nov 2002:
[karo-tx-uboot.git] / board / MAI / bios_emulator / scitech / makedefs / rules / wc16.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 # Implicit generation rules for making object files
39 %$O: %.c ; $(CC) @$(mktmp $(CFLAGS)) $<
40 %$O: %$P ; $(CPP) @$(mktmp $(CFLAGS)) $<
41 %$O: %$A ; $(AS) @$(mktmp $(ASFLAGS)) $(<:s,/,\)
42
43 # Implicit rule for building resource files
44 %$R: %.rc ; $(RC) $(RCFLAGS) -r $<
45
46 # Implicit rule for building a library file using response file
47 .IF $(BUILD_DLL)
48 %$L: ;
49     @$(RM) $@
50     $(ILIB) $(ILIBFLAGS) $@ +$?
51 .ELIF $(IMPORT_DLL)
52 %$L: ;
53     @$(RM) $@
54     $(ILIB) $(ILIBFLAGS) $@ +$?
55 .ELSE
56 %$L: ;
57     @$(RM) $@
58     $(LIB) $(LIBFLAGS) $@ @$(mktmp,$*.rsp +$(&:t"\n+":s/\/\\)\n)
59 .ENDIF
60
61 # Implicit rule for building an executable file using response file
62 .IF $(USE_WIN16)
63 .IF $(BUILD_DLL)
64 %$E: ;
65         @trimlib $(mktmp $(LDFLAGS) OP quiet SYS windows_dll\nN $@\nF $(&:t",":s/\/\\)\nLIBR $(EXELIBS:t",")) $*.lnk
66         rclink $(LD) $(RC) $@ $*.lnk
67         @$(RM) -S $(mktmp $*.lnk)
68 .ELSE
69 %$E: ;
70         @trimlib $(mktmp $(LDFLAGS) OP quiet SYS windows\nN $@\nF $(&:t",":s/\/\\)\nLIBR $(EXELIBS:t",")) $*.lnk
71         rclink $(LD) $(RC) $@ $*.lnk
72         @$(RM) -S $(mktmp $*.lnk)
73 .ENDIF
74 .ELSE
75 %$E: ;
76         @trimlib $(mktmp OP quiet\nN $@\nF $(&:t",":s/\/\\)\nLIBR $(PMLIB) $(EXELIBS:t",")) $*.lnk
77         $(LD) $(LDFLAGS) @$*.lnk
78         @$(RM) -S $(mktmp $*.lnk)
79 .ENDIF