免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2593 | 回复: 8
打印 上一主题 下一主题

太悲剧了,入门求教. [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-10-23 18:06 |只看该作者 |倒序浏览
以前都是用VC来编译程序的,结果糊糊涂涂过了好几年,还停留在hello world水平...
突然想学习一下makefile之类的..于是...

拷贝了一个 MinGW 文件到C盘根目录
     MinGW\bin
       MinGW\include
       MinGW\lib

版本是 V3.31

于是写了个helloworld代码, 放在bin下面....

运行 gcc -c main.c
gcc main.o -o myMain

正常...

忽而又听说makefile这个东西,于是乎百度了一下,模仿了一下
  1. myMain.exe : main.o
  2.         gcc main.o -o myMain.exe
  3. main.o : main.c
  4.         gcc -c main.c
复制代码
运行bin下面的make...

    mingw32-make.exe  main.mak

结果每次都是 Nothing to be done for main.mak  ......  前面也是Tab.....

无法进行下去了...求助...

论坛徽章:
0
2 [报告]
发表于 2010-10-23 18:41 |只看该作者
本帖最后由 cjacker 于 2010-10-23 22:44 编辑

OK,我改,正解见楼下。

论坛徽章:
1
技术图书徽章
日期:2013-09-09 13:47:26
3 [报告]
发表于 2010-10-23 22:33 |只看该作者
楼上的误人子弟。
默认的第一个目标为终极目标?

  1. By default, make starts with the first target (not targets whose names start with ‘.’). This
  2. is called the default goal. (Goals are the targets that make strives ultimately to update. You
  3. can override this behavior using the command line (see Section 9.2 [Arguments to Specify
  4. the Goals], page 91) or with the .DEFAULT_GOAL special variable (see Section 3.6 [Other
  5. Special Variables], page 14).
复制代码
我想楼主的错误是应该使用 make -f makefilename
如下文:

  1. 3.2 What Name to Give Your Makefile
  2. By default, when make looks for the makefile, it tries the following names, in order:
  3. ‘GNUmakefile’, ‘makefile’ and ‘Makefile’.
  4. Normally you should call your makefile either ‘makefile’ or ‘Makefile’. (We recommend
  5. ‘Makefile’ because it appears prominently near the beginning of a directory listing, right
  6. near other important files such as ‘README’.) The first name checked, ‘GNUmakefile’, is not
  7. recommended for most makefiles. You should use this name if you have a makefile that is
  8. specific to GNU make, and will not be understood by other versions of make. Other make
  9. programs look for ‘makefile’ and ‘Makefile’, but not ‘GNUmakefile’.
  10. If make finds none of these names, it does not use any makefile. Then you must specify
  11. a goal with a command argument, and make will attempt to figure out how to remake it
  12. using only its built-in implicit rules. See Chapter 10 [Using Implicit Rules], page 101.
  13. If you want to use a nonstandard name for your makefile, you can specify the makefile
  14. name with the ‘-f’ or ‘--file’ option. The arguments ‘-f name’ or ‘--file=name’ tell make
  15. to read the file name as the makefile. If you use more than one ‘-f’ or ‘--file’ option,
  16. you can specify several makefiles. All the makefiles are effectively concatenated in the order
  17. specified. The default makefile names ‘GNUmakefile’, ‘makefile’ and ‘Makefile’ are not
  18. checked automatically if you specify ‘-f’ or ‘--file’.
复制代码
LZ想学东西至少应该仔细的看一遍手册。

论坛徽章:
27
处女座
日期:2016-04-18 14:00:4515-16赛季CBA联赛之福建
日期:2023-03-31 15:54:2315-16赛季CBA联赛之深圳
日期:2020-06-02 10:10:5015-16赛季CBA联赛之广夏
日期:2019-07-23 16:59:452016科比退役纪念章
日期:2019-06-26 16:59:1315-16赛季CBA联赛之天津
日期:2019-05-28 14:25:1915-16赛季CBA联赛之青岛
日期:2019-05-16 10:14:082016科比退役纪念章
日期:2019-01-11 14:44:062016科比退役纪念章
日期:2018-07-18 16:17:4015-16赛季CBA联赛之上海
日期:2017-08-22 18:18:5515-16赛季CBA联赛之江苏
日期:2017-08-04 17:00:4715-16赛季CBA联赛之佛山
日期:2017-02-20 18:21:13
4 [报告]
发表于 2010-10-23 23:46 |只看该作者

论坛徽章:
0
5 [报告]
发表于 2010-10-24 14:28 |只看该作者
LZ你的makefile的文件名是什么?

论坛徽章:
0
6 [报告]
发表于 2010-10-24 14:37 |只看该作者
以前都是用VC来编译程序的,结果糊糊涂涂过了好几年,还停留在hello world水平...
突然想学习一下makefile之 ...
HonryZZ 发表于 2010-10-23 18:06



   
你水平停留在写HELLOWORLD上和VC有什么关系?

论坛徽章:
0
7 [报告]
发表于 2010-10-24 17:23 |只看该作者
回复 3# umyspl



谢谢哈.....   因为突然想学习makefile, 不晓得从何学起, 昨天下午从网上download了一个中文版的看了一下,开始举了个例子说明..我也就想弄个小例子说明一下...有个例子再看后面的一步一步来会好一些吧..结果又出现了以下几个问题:

1.  makefile 中文件路径该如何表示? 怎么有的用 /../. .. 而有的地方又用..\..\ ... 现在都迷糊了...

2.  看下面的..


  1. Resource_Path = Resource
  2. OBJ_Path = Resource\Gun_Obj
  3. BIN_Path = Resource\Gun_bin
  4. GCC_PATH = c:\MinGW\bin

  5. GCC = $(GCC_PATH)\gcc

  6. $(BIN_Path)\BIDI_LINK.exe : $(OBJ_Path)\bidi_link_srv.o $(OBJ_Path)\bidi_link_main.o $(OBJ_Path)\bidi_link_error.o
  7.         $(GCC) $(OBJ_Path)\bidi_link_srv.o $(OBJ_Path)\bidi_link_main.o $(OBJ_Path)\bidi_link_error.o -o $(BIN_Path)\BIDI_LINK.exe
  8. $(OBJ_Path)\bidi_link_srv.o : $(Resource_Path)\bidi_link_srv.c
  9.         $(GCC) $(Resource_Path)\bidi_link_srv.c -c -o $(OBJ_Path)\bidi_link_srv.o
  10. $(OBJ_Path)\bidi_link_main.o : $(Resource_Path)\bidi_link_main.c
  11.         $(GCC) $(Resource_Path)\bidi_link_main.c -c -o $(OBJ_Path)\bidi_link_main.o
  12. $(OBJ_Path)\bidi_link_error.o : $(Resource_Path)\bidi_link_error.c
  13.         $(GCC) $(Resource_Path)\bidi_link_error.c -c -o $(OBJ_Path)\bidi_link_error.o
复制代码
编译三个 obj..  我已经指定了编译器的路径了吧..结果还报错,提示找不到gcc.... 记得刚才是能找到gcc..结果说找不到 as ..... 我记得昨晚这样写好像都还可以的编译正常....


3.  是有一个伪目标... clean :
   文档上是用rm 去删除生成的obj... 我用rm找不到command...也应该找不到...还能理解... 我把rm 改成del... 或者加参数 del/Q... 都不行....提示找不到del....悲剧坏了...呵呵...

还希望赐教..谢谢...

:
哦.. 说一下...

Mingw 目录:  C:\MINGW\
MSYS 目录 : c:\msys

我是在c:\msys\bin 下面建立了一个resource 文件夹... 三个c文件是放在这个resource文件夹下面的... 然后在这个目录指定GCC的目录.. 用的是msys下面的make文件...

论坛徽章:
0
8 [报告]
发表于 2010-10-24 17:25 |只看该作者
回复 6# alleva


    可有关系啦..悲剧嘛..
打开VC..建立一个小项目,,敲个helloworld..直接编译运行..出结果了....

..........  从来没有考虑过其他的...完全不晓得程序编译时个咋回事..是怎么组织的.....

论坛徽章:
0
9 [报告]
发表于 2010-10-24 20:53 |只看该作者
SYNOPSIS
       make [ -f makefile ] [ options ] ... [ targets ] ...

还是那句话:不看手册,该打。

评分

参与人数 1可用积分 +1 收起 理由
davelv + 1 支持

查看全部评分

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP