]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/MAI/bios_emulator/scitech/makedefs/rules/emx.mk
* Patch by Thomas Frieden, 13 Nov 2002:
[karo-tx-uboot.git] / board / MAI / bios_emulator / scitech / makedefs / rules / emx.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 #               OS/2 version for EMX/GNU C/C++.
31 #
32 #############################################################################
33
34 # Take out PMLIB if we don't need to link with it
35
36 .IF $(NO_PMLIB)
37 PMLIB :=
38 .ENDIF
39
40 # Implicit generation rules for making object files
41 %$O: %.c ;
42 .IF $(SHOW_ARGS)
43         $(CC) -c $(CFLAGS) $(<:s,\,/)
44 .ELSE
45         @echo $(CC) -c $(<:s,\,/)
46         @$(CC) -c $(CFLAGS) $(<:s,\,/)
47 .ENDIF
48
49 %$O: %$P ;
50 .IF $(SHOW_ARGS)
51         $(CXX) -c $(CFLAGS) $(<:s,\,/)
52 .ELSE
53         @echo $(CXX) -c $(<:s,\,/)
54         @$(CXX) -c $(CFLAGS) $(<:s,\,/)
55 .ENDIF
56
57 %$O: %$A ;
58 .IF $(USE_NASM)
59 .IF $(SHOW_ARGS)
60         $(AS) -o $@ $(ASFLAGS) $(<:s,\,/)
61 .ELSE
62         @echo $(AS) $(<:s,\,/)
63         @$(AS) @$(mktmp -o $@ $(ASFLAGS)) $(<:s,\,/)
64 .ENDIF
65 .ELSE
66 .IF $(SHOW_ARGS)
67
68     $(AS)  @$(mktmp $(ASFLAGS:s/\/\\)) $(<:s,/,\)
69 .ELSE
70         @echo $(AS) $(<:s,/,\)
71     $(AS)  @$(mktmp $(ASFLAGS:s/\/\\)) $(<:s,/,\)
72 .ENDIF
73 .ENDIF
74
75 # Implicit rule for building a library file using response file
76 %$L:     ;
77 .IF $(SHOW_ARGS)
78         $(LIB) $(LIBFLAGS) $@ $(&:s,\,/)
79 .ELSE
80         @echo $(LIB) $@
81         @$(LIB) $(LIBFLAGS) $@ @$(mktmp $(?:t"\n"))
82 .ENDIF
83
84 # Implicit rule for building an executable file using response file
85 %$E:     ;
86 .IF $(SHOW_ARGS)
87         $(LD) $(LDFLAGS) -o $@ $(&:s,\,/) $(EXELIBS) $(PMLIB) -lgpp -lstdcpp
88 .ELSE
89         @echo $(LD) $@
90         @$(LD) $(LDFLAGS) -o $@ $(&:s,\,/) $(EXELIBS) $(PMLIB) -lgpp -lstdcpp
91 .ENDIF