设为首页 加入收藏

TOP

GNU make 指南 (十七)
2010-12-30 20:23:57 】 浏览:22628
Tags:GNU make 指南
    ######################################

      ### Customising
      # 用户设定
      #
      # Adjust the following if necessary; EXECUTABLE is the target
      # executable's filename, and LIBS is a list of libraries to link in
      # (e.g. alleg, stdcx, iostr, etc). You can override these on make's
      # command line of course, if you prefer to do it that way.
      #
      # 如果需要,调整下面的东西。 EXECUTABLE 是目标的可执行文件名, LIBS
      # 是一个需要连接的程序包列表(例如 alleg, stdcx, iostr 等等)。当然你
      # 可以在 make 的命令行覆盖它们,你愿意就没问题。
      #

      EXECUTABLE := mushroom.exe
      LIBS := alleg

      # Now alter any implicit rules' variables if you like, e.g.:
      #
      # 现在来改变任何你想改动的隐含规则中的变量,例如

      CFLAGS := -g -Wall -O3 -m486
      CXXFLAGS := $(CFLAGS)

      # The next bit checks to see whether rm is in your djgpp bin
      # directory; if no
首页 上一页 14 15 16 17 18 19 20 下一页 尾页 17/21/21
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇Linux系统调用跟我学 下一篇没有了

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目