{"id":633,"date":"2022-08-09T21:49:48","date_gmt":"2022-08-09T13:49:48","guid":{"rendered":"https:\/\/www.lcettsg.cn\/code\/?p=633"},"modified":"2022-09-29T22:55:43","modified_gmt":"2022-09-29T14:55:43","slug":"make-%e5%91%bd%e4%bb%a4%e6%95%99%e7%a8%8b","status":"publish","type":"post","link":"https:\/\/www.lcettsg.cn\/code\/?p=633","title":{"rendered":"Make \u547d\u4ee4\u6559\u7a0b"},"content":{"rendered":"\n<p>\u5de5\u7a0b\u7ba1\u7406\u5668\u3002<\/p>\n\n\n\n<p>http:\/\/www.ruanyifeng.com\/blog\/2015\/02\/make.html\uff08\u962e\u4e00\u5cf0\uff09<\/p>\n\n\n\n<p>\u53c2\u674e\u6167\u82b9c\u8bed\u8a00\u6559\u7a0b\u3002\u53c2\u8003\u8d44\u6599\uff1a\u300a\u8ddf\u6211\u4e00\u8d77\u5b66makefile(\u9648\u7693\uff09\u300b\u3001\u300amakefile\u53c2\u8003\u624b\u518c\u300b\u3002<\/p>\n\n\n\n<p>\u5e2e\u52a9\u7ba1\u7406\u5de5\u7a0b\u53ca\u6587\u4ef6\u4f9d\u8d56\u3002<\/p>\n\n\n\n<p>\u914d\u7f6e\u6587\u4ef6: \u6267\u884cmake\u547d\u4ee4\u65f6\uff0c\u9ed8\u8ba4\u5bfb\u627e\u5f53\u524d\u76ee\u5f55\u4e0b\u7684makefile\u6216Makefile\u3002\u5982\u679c\u4e24\u4e2a\u6587\u4ef6\u90fd\u6709\u7684\u8bdd\uff0c\u5148\u4f7f\u7528makefile.<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>#STAGE 1\nOBJS=main.o tool1.o tool2.o\nCC=gcc\nCFLAGS+=-c -Wall -g \n\nmytool:$(OBJS)\n\t$(CC) $(OBJS) -o mytool\n\nmain.o:main.c\n\t$(CC) main.c $(CFLAGS) -o main.o\ntool1.o:tool1.c\n\t$(CC) tool1.c $(CFLAGS) -o tool1.c\ntool2.o:tool2.c\n\t$(CC) tool2.c $(CFLAGS) -o tool2.c\n\t\nclean:\n\t$(RM) *.o mytool   # RM\u76f8\u5f53\u4e8erm -f<\/code><\/pre>\n\n\n\n<p>$^: \u4ee3\u8868\u6240\u6709\u4f9d\u8d56\u6587\u4ef6<\/p>\n\n\n\n<p>$@: \u6307\u4ee3\u76ee\u6807\u6587\u4ef6<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>#STAGE 2\nOBJS=main.o tool1.o tool2.o\nCC=gcc\nCFLAGS+=-c -Wall -g \n\nmytool:$(OBJS)\n\t$(CC) $^ -o $@\n\nmain.o:main.c\n\t$(CC) $^ $(CFLAGS) -o $@\ntool1.o:tool1.c\n\t$(CC) $^ $(CFLAGS) -o $@\ntool2.o:tool2.c\n\t$(CC) $^ $(CFLAGS) -o $@\n\t\nclean:\n\t$(RM) *.o mytool   # RM\u76f8\u5f53\u4e8erm -f<\/code><\/pre>\n\n\n\n<p>%.o: %.c\uff1a %\u4ee3\u8868\u901a\u914d\u7b26<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>#STAGE 3\nOBJS=main.o tool1.o tool2.o\nCC=gcc\nCFLAGS+=-c -Wall -g \n\nmytool:$(OBJS)\n\t$(CC) $^ -o $@\n\n%.o:%.c\n\t$(CC) $^ $(CFLAGS) -o $@\n\nclean:\n\t$(RM) *.o mytool   # RM\u76f8\u5f53\u4e8erm -f<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u5de5\u7a0b\u7ba1\u7406\u5668\u3002 http:\/\/www.ruanyifeng.com\/blog\/2015\/02\/make.html [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[],"class_list":["post-633","post","type-post","status-publish","format-standard","hentry","category-linux"],"_links":{"self":[{"href":"https:\/\/www.lcettsg.cn\/code\/index.php?rest_route=\/wp\/v2\/posts\/633"}],"collection":[{"href":"https:\/\/www.lcettsg.cn\/code\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.lcettsg.cn\/code\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.lcettsg.cn\/code\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.lcettsg.cn\/code\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=633"}],"version-history":[{"count":6,"href":"https:\/\/www.lcettsg.cn\/code\/index.php?rest_route=\/wp\/v2\/posts\/633\/revisions"}],"predecessor-version":[{"id":937,"href":"https:\/\/www.lcettsg.cn\/code\/index.php?rest_route=\/wp\/v2\/posts\/633\/revisions\/937"}],"wp:attachment":[{"href":"https:\/\/www.lcettsg.cn\/code\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=633"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.lcettsg.cn\/code\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=633"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.lcettsg.cn\/code\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=633"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}