gcc_linux.mk 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. # Take out PMLIB if we don't need to link with it
  32. .IF $(NO_PMLIB)
  33. PMLIB :=
  34. .ENDIF
  35. .IF $(USE_CXX_LINKER)
  36. LD := $(LDXX)
  37. .ENDIF
  38. # Implicit generation rules for making object files from source files
  39. %$O: %.c ;
  40. .IF $(SHOW_ARGS)
  41. $(CC) -c $(CFLAGS) $<
  42. .ELSE
  43. @$(ECHO) $(CC) $(SHOW_CFLAGS) $<
  44. @$(CC) -c $(CFLAGS) $<
  45. .ENDIF
  46. %$O: %$P ;
  47. .IF $(SHOW_ARGS)
  48. $(CXX) -c $(CFLAGS) $<
  49. .ELSE
  50. @$(ECHO) $(CXX) $(SHOW_CFLAGS) $<
  51. @$(CXX) -c $(CFLAGS) $<
  52. .ENDIF
  53. %$O: %$A ;
  54. .IF $(SHOW_ARGS)
  55. $(AS) -o $@ $(ASFLAGS) $<
  56. .ELSE
  57. @$(ECHO) $(AS) $(SHOW_ASFLAGS) $<
  58. @$(AS) @$(mktmp -o $@ $(ASFLAGS)) $<
  59. .ENDIF
  60. # Implicit rule for building a library file
  61. .IF $(BUILD_DLL)
  62. %$L: ;
  63. .IF $(SHOW_ARGS)
  64. $(LIB) $(LIBFLAGS) -Wl,-soname,$@.$(VERSIONMAJ) -o $@ $& $(LIBS)
  65. .ELSE
  66. @$(ECHO) $(LIB) $@
  67. @$(LIB) $(LIBFLAGS) -Wl,-soname,$@.$(VERSIONMAJ) -o $@ $& $(LIBS)
  68. .ENDIF
  69. .ELSE
  70. %$L: ;
  71. .IF $(SHOW_ARGS)
  72. $(LIB) $(LIBFLAGS) $@ $&
  73. .ELSE
  74. @$(ECHO) $(LIB) $@
  75. @$(LIB) $(LIBFLAGS) $@ $&
  76. .ENDIF
  77. .ENDIF
  78. # Implicit rule for building an executable file
  79. %$E: ;
  80. .IF $(SHOW_ARGS)
  81. $(LD) $(LDFLAGS) -o $@ $& $(EXELIBS) $(PMLIB) -lm
  82. .ELSE
  83. @$(ECHO) ld $@
  84. @$(LD) $(LDFLAGS) -o $@ $& $(EXELIBS) $(PMLIB) -lm
  85. .ENDIF