bcos2.mk 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. # Implicit generation rules for making object files
  32. %$O: %.c ; $(CC) @$(mktmp $(CFLAGS:s/\/\\)) -c $(<:s,/,\)
  33. %$O: %$P ; $(CC) @$(mktmp $(CFLAGS:s/\/\\)) -c $(<:s,/,\)
  34. .IF $(USE_NASM)
  35. %$O: %$A ; $(AS) @$(mktmp -o $@ $(ASFLAGS:s/\/\\)) $(<:s,/,\)
  36. .ELSE
  37. %$O: %$A ; $(AS) @$(mktmp $(ASFLAGS:s/\/\\)) $(<:s,/,\)
  38. .ENDIF
  39. # Implicit rule for building resource files
  40. %$R: %.rc ; $(RC) $(RCFLAGS) -r $<
  41. # Implicit rule for building a DLL using a response file
  42. %$D: ;
  43. makedef $(@:b)
  44. $(LD) $(mktmp $(LDFLAGS) -Tod -aa c02d.obj+\n$(&:s/\/\\)\n$@\n$*.map\n$(DEF_LIBS:s/\/\\) $(EXELIBS)\n$*.def)
  45. # Implicit rule for building a library file using response file
  46. .IF $(BUILD_DLL)
  47. %$L: ;
  48. @$(RM) $@
  49. $(ILIB) $(ILIBFLAGS) $@ $?
  50. .ELIF $(IMPORT_DLL)
  51. %$L: ;
  52. @$(RM) $@
  53. $(ILIB) $(ILIBFLAGS) $@ $?
  54. .ELSE
  55. %$L: ;
  56. @$(RM) $@
  57. $(LIB) $(LIBFLAGS) $@ @$(mktmp +$(&:t" &\n+")\n)
  58. .ENDIF
  59. # Implicit rule for building an executable file using response file
  60. .IF $(USE_OS2GUI)
  61. %$E: ; $(LD) $(mktmp $(LDFLAGS) -Toe -aa c02.obj+\n$(&:s/\/\\)\n$@\n$*.map\n$(DEF_LIBS:s/\/\\) $(EXELIBS)\n$*.def)
  62. .ELSE
  63. %$E: ; $(LD) $(mktmp $(LDFLAGS) -Toe -ap c02.obj+\n$(&:s/\/\\)\n$@\n$*.map\n$(DEF_LIBS:s/\/\\) $(EXELIBS)\n$*.def)
  64. .ENDIF