1 #############################################################################
3 # SciTech Multi-platform Graphics Library
5 # ========================================================================
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
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.
17 # The Original Code is Copyright (C) 1991-1998 SciTech Software, Inc.
19 # The Initial Developer of the Original Code is SciTech Software, Inc.
20 # All Rights Reserved.
22 # ========================================================================
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
30 #############################################################################
32 # Take out PMLIB if we don't need to link with it
42 # Implicit generation rules for making object files from source files
45 $(CC) -c $(CFLAGS:s/\/\\) $(<:s,/,\)
47 @$(ECHO) $(CC) $(SHOW_CFLAGS:s/\/\\) $(<:s,/,\)
48 @$(CC) -c $(CFLAGS:s/\/\\) $(<:s,/,\)
53 $(CXX) -c $(CFLAGS:s/\/\\) $(<:s,/,\)
55 @$(ECHO) $(CXX) $(SHOW_CFLAGS:s/\/\\) $(<:s,/,\)
56 @$(CXX) -c $(CFLAGS:s/\/\\) $(<:s,/,\)
61 $(AS) -o $(ASFLAGS:s/\/\\) $(<:s,/,\)
63 @$(ECHO) $(AS) $(SHOW_ASFLAGS:s/\/\\) $(<:s,/,\)
64 @$(AS) @$(mktmp -o $@ $(ASFLAGS:s/\/\\)) $(<:s,/,\)
67 # Implicit rule for building resource files
68 %$R: %.rc ; $(RC) $< $(RCFLAGS) -o $@
70 # Implicit rule for building a DLL
72 #%$D: ; +rclink $(LD) $(RC) $@ $(mktmp $(LDFLAGS) /Fe$@ $(&:t"\n"s/\/\\) $(PMLIB) $(EXELIBS) $(DEF_LIBS) $(LDENDFLAGS))
74 # Implicit rule for building a library file
77 $(LIB) $(LIBFLAGS) $@ $&
80 @$(LIB) $(LIBFLAGS) $@ @$(mktmp $(&:s/\/\\)\n)
83 # Implicit rule for building an executable file
86 $(LD) $(LDFLAGS) -o $@ $& $(EXELIBS) $(PMLIB) -lm
89 @$(LD) $(LDFLAGS) -o $@ @$(mktmp $(&:s/\/\\) $(EXELIBS) $(PMLIB) -lm)