-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspecial_targets.html
1134 lines (685 loc) · 53.3 KB
/
special_targets.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html lang="ko" >
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-161001174-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-161001174-4');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Special Targets | Introduction</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="description" content="">
<meta name="generator" content="GitBook 2.6.7">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="gitbook/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="gitbook/images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="gitbook/style.css">
<link rel="stylesheet" href="gitbook/plugins/gitbook-plugin-highlight/website.css">
<link rel="stylesheet" href="gitbook/plugins/gitbook-plugin-search/search.css">
<link rel="stylesheet" href="gitbook/plugins/gitbook-plugin-fontsettings/website.css">
<link rel="next" href="./recursive_make.html" />
<link rel="prev" href="./DAG.html" />
</head>
<body>
<div class="book"
data-level="6"
data-chapter-title="Special Targets"
data-filepath="special_targets.md"
data-basepath="."
data-innerlanguage="">
<div class="book-summary">
<nav role="navigation">
<ul class="summary">
<li class="chapter " data-level="0" data-path="index.html">
<a href="./index.html">
<i class="fa fa-check"></i>
Introduction
</a>
</li>
<li class="chapter " data-level="1" data-path="bug_reports.html">
<a href="./bug_reports.html">
<i class="fa fa-check"></i>
<b>1.</b>
Bug reports
</a>
</li>
<li class="chapter " data-level="2" data-path="variables_and_functions.html">
<a href="./variables_and_functions.html">
<i class="fa fa-check"></i>
<b>2.</b>
Variables and Functions
</a>
<ul class="articles">
<li class="chapter " data-level="2.1" data-path="multiline_variables.html">
<a href="./multiline_variables.html">
<i class="fa fa-check"></i>
<b>2.1.</b>
Multi-Line Variables
</a>
</li>
<li class="chapter " data-level="2.2" data-path="target_specific_variables.html">
<a href="./target_specific_variables.html">
<i class="fa fa-check"></i>
<b>2.2.</b>
Target-Specific Variables
</a>
</li>
<li class="chapter " data-level="2.3" data-path="automatic_variables.html">
<a href="./automatic_variables.html">
<i class="fa fa-check"></i>
<b>2.3.</b>
Automatic Variables
</a>
</li>
<li class="chapter " data-level="2.4" data-path="substitution_references.html">
<a href="./substitution_references.html">
<i class="fa fa-check"></i>
<b>2.4.</b>
Substitution References
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="3" data-path="special_variables.html">
<a href="./special_variables.html">
<i class="fa fa-check"></i>
<b>3.</b>
Special Variables
</a>
</li>
<li class="chapter " data-level="4" data-path="directives.html">
<a href="./directives.html">
<i class="fa fa-check"></i>
<b>4.</b>
Directives
</a>
<ul class="articles">
<li class="chapter " data-level="4.1" data-path="conditional_directives.html">
<a href="./conditional_directives.html">
<i class="fa fa-check"></i>
<b>4.1.</b>
Conditional Directives
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="5" data-path="rules.html">
<a href="./rules.html">
<i class="fa fa-check"></i>
<b>5.</b>
Rules
</a>
<ul class="articles">
<li class="chapter " data-level="5.1" data-path="double_colon_rules.html">
<a href="./double_colon_rules.html">
<i class="fa fa-check"></i>
<b>5.1.</b>
Double-Colon Rules
</a>
</li>
<li class="chapter " data-level="5.2" data-path="pattern_rules.html">
<a href="./pattern_rules.html">
<i class="fa fa-check"></i>
<b>5.2.</b>
Pattern Rules
</a>
</li>
<li class="chapter " data-level="5.3" data-path="static_pattern_rules.html">
<a href="./static_pattern_rules.html">
<i class="fa fa-check"></i>
<b>5.3.</b>
Static Pattern Rules
</a>
</li>
<li class="chapter " data-level="5.4" data-path="recipes.html">
<a href="./recipes.html">
<i class="fa fa-check"></i>
<b>5.4.</b>
Recipes
</a>
</li>
<li class="chapter " data-level="5.5" data-path="DAG.html">
<a href="./DAG.html">
<i class="fa fa-check"></i>
<b>5.5.</b>
DAG
</a>
</li>
</ul>
</li>
<li class="chapter active" data-level="6" data-path="special_targets.html">
<a href="./special_targets.html">
<i class="fa fa-check"></i>
<b>6.</b>
Special Targets
</a>
</li>
<li class="chapter " data-level="7" data-path="recursive_make.html">
<a href="./recursive_make.html">
<i class="fa fa-check"></i>
<b>7.</b>
Recursive Make
</a>
</li>
<li class="chapter " data-level="8" data-path="include.html">
<a href="./include.html">
<i class="fa fa-check"></i>
<b>8.</b>
Include
</a>
</li>
<li class="chapter " data-level="9" data-path="one_DAG.html">
<a href="./one_DAG.html">
<i class="fa fa-check"></i>
<b>9.</b>
One DAG
</a>
</li>
<li class="chapter " data-level="10" data-path="parallel_execution.html">
<a href="./parallel_execution.html">
<i class="fa fa-check"></i>
<b>10.</b>
Parallel Execution
</a>
</li>
<li class="chapter " data-level="11" data-path="builtin_functions.html">
<a href="./builtin_functions.html">
<i class="fa fa-check"></i>
<b>11.</b>
Built-in Functions
</a>
<ul class="articles">
<li class="chapter " data-level="11.1" data-path="builtin_functions/text_functions.html">
<a href="./builtin_functions/text_functions.html">
<i class="fa fa-check"></i>
<b>11.1.</b>
Text Functions
</a>
</li>
<li class="chapter " data-level="11.2" data-path="builtin_functions/file_name_functions.html">
<a href="./builtin_functions/file_name_functions.html">
<i class="fa fa-check"></i>
<b>11.2.</b>
File Name Functions
</a>
</li>
<li class="chapter " data-level="11.3" data-path="builtin_functions/conditional_functions.html">
<a href="./builtin_functions/conditional_functions.html">
<i class="fa fa-check"></i>
<b>11.3.</b>
Conditional Functions
</a>
</li>
<li class="chapter " data-level="11.4" data-path="builtin_functions/foreach_function.html">
<a href="./builtin_functions/foreach_function.html">
<i class="fa fa-check"></i>
<b>11.4.</b>
Foreach Function
</a>
</li>
<li class="chapter " data-level="11.5" data-path="builtin_functions/file_function.html">
<a href="./builtin_functions/file_function.html">
<i class="fa fa-check"></i>
<b>11.5.</b>
File Function
</a>
</li>
<li class="chapter " data-level="11.6" data-path="builtin_functions/call_function.html">
<a href="./builtin_functions/call_function.html">
<i class="fa fa-check"></i>
<b>11.6.</b>
Call Function
</a>
</li>
<li class="chapter " data-level="11.7" data-path="builtin_functions/eval_function.html">
<a href="./builtin_functions/eval_function.html">
<i class="fa fa-check"></i>
<b>11.7.</b>
Eval Function
</a>
</li>
<li class="chapter " data-level="11.8" data-path="builtin_functions/value_function.html">
<a href="./builtin_functions/value_function.html">
<i class="fa fa-check"></i>
<b>11.8.</b>
Value Function
</a>
</li>
<li class="chapter " data-level="11.9" data-path="builtin_functions/origin_function.html">
<a href="./builtin_functions/origin_function.html">
<i class="fa fa-check"></i>
<b>11.9.</b>
Origin Function
</a>
</li>
<li class="chapter " data-level="11.10" data-path="builtin_functions/flavor_function.html">
<a href="./builtin_functions/flavor_function.html">
<i class="fa fa-check"></i>
<b>11.10.</b>
Flavor Function
</a>
</li>
<li class="chapter " data-level="11.11" data-path="builtin_functions/make_control_functions.html">
<a href="./builtin_functions/make_control_functions.html">
<i class="fa fa-check"></i>
<b>11.11.</b>
Make Control Functions
</a>
</li>
<li class="chapter " data-level="11.12" data-path="builtin_functions/shell_function.html">
<a href="./builtin_functions/shell_function.html">
<i class="fa fa-check"></i>
<b>11.12.</b>
Shell Function
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="12" data-path="command_line_options.html">
<a href="./command_line_options.html">
<i class="fa fa-check"></i>
<b>12.</b>
Command-line Options
</a>
</li>
<li class="chapter " data-level="13" data-path="debugging.html">
<a href="./debugging.html">
<i class="fa fa-check"></i>
<b>13.</b>
Debugging
</a>
</li>
<li class="chapter " data-level="14" data-path="tips.html">
<a href="./tips.html">
<i class="fa fa-check"></i>
<b>14.</b>
Tips
</a>
</li>
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
</a>
</li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<!-- Actions Left -->
<!-- Title -->
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i>
<a href="./" >Introduction</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<section class="normal" id="section-">
<h1 id="special-targets">Special Targets</h1>
<p>rule 을 정의할 때 사용하는 <code>target : prerequisites</code> 형식을 사용하는 타겟으로
특별한 의미를 가집니다.
타겟 중에는 prerequisites 을 사용하는 타겟이 있고 사용하지 않는 타겟이 있습니다.</p>
<p><a name="default"></a></p>
<h4 id="default">.DEFAULT:</h4>
<p>prerequisites 을 빌드 하는데 필요한 rule 을 찾지 못했을 경우 default 로
실행할 rule 을 설정합니다.</p>
<blockquote>
<p>.DEFAULT 타겟의 prerequisites 은 사용되지 않습니다.</p>
</blockquote>
<pre><code class="lang-makefile">prog: foo bar <span class="hljs-comment"># prerequisites 에 해당하는 foo, bar 를 만드는데 필요한 rule 이 없다.</span>
@echo target: $@
.DEFAULT: <span class="hljs-comment"># default rule 이 실행된다.</span>
@echo default: $@
<span class="hljs-comment">###### 실행 결과 #######</span>
default: foo <span class="hljs-comment"># '$@' 값은 각 타겟으로 설정됩니다.</span>
default: bar
target: prog
</code></pre>
<p>다음은 match-anything rule 인 <code>%</code> 과 <code>.DEFAULT</code> 룰을 비교한 것인데
<code>%</code> 룰의 경우에는 foo 타겟을 빌드 하는데 필요한 recipe 가 없을 경우에도 실행되지만
<code>.DEFAULT</code> 룰의 경우는 prerequisites 에 해당하는 bar 타겟에 대해서만 실행되는 것을 볼 수 있습니다.</p>
<pre><code class="lang-makefile">foo : bar foo : bar
% : .DEFAULT :
@echo % : $@ @echo default : $@
<span class="hljs-comment">#### 실행 결과 #### #### 실행 결과 ####</span>
% : bar default : bar
% : foo <span class="hljs-comment"># foo 타겟에 대해서도 실행된다.</span>
</code></pre>
<h4 id="deleteonerror">.DELETE_ON_ERROR:</h4>
<p>이것은 <code>.PRECIOUS</code> 타겟과 비슷하지만 차이점은 signal 에의해 비정상 종료할 때가 아닌
recipe 실행 중에 shell 명령이 오류로 종료하여 make 실행이 중단될 경우를 말합니다.
원래는 이 경우에도 타겟 파일이 자동으로 삭제되어야 하지만 역사적인 이유로 직접 설정해야
한다고 합니다.( 다시 말해서 default 는 삭제가 되지 않습니다. )</p>
<p><code>.DELETE_ON_ERROR</code> 타겟을 Makefile 에 추가하면 recipe 실행 중에 오류로 make 이 종료될때
타겟이 update 되었는지 체킹 한 후 update 되었을 경우 해당 타겟 파일을 삭제합니다.</p>
<blockquote>
<p>.DELETE_ON_ERROR 타겟의 prerequisites 은 사용되지 않습니다.</p>
</blockquote>
<pre><code class="lang-makefile">.DELETE_ON_ERROR:
foo :
touch $@
false
@echo target: $@
<span class="hljs-comment">########## 실행 결과 ##########</span>
touch foo <span class="hljs-comment"># 타겟 파일을 update </span>
false
make: *** [Makefile:7: foo] Error 1
make: *** Deleting file 'foo' <--- 오류로 종료시 타겟파일이 update 되었으면 삭제한다.
</code></pre>
<h4 id="exportallvariables">.EXPORT_ALL_VARIABLES:</h4>
<p>모든 변수들을 export 합니다.
기본적으로 변수명이 대, 소문자, 숫자, <code>_</code> 로 구성된 변수만 export 됩니다.<br>원래 old make 에서는 이것이 디폴트 동작 방식이었다고 합니다.
export 지시자를 단독으로 사용하는 것도 동일하게 동작하지만 old make 에서는 오류가 나므로
이 타겟을 사용하면 됩니다.</p>
<h4 id="ignore">.IGNORE:</h4>
<p>recipe 에서 명령이 오류로 종료하여 make 실행이 종료되는 것을 ignore 할때 사용합니다.
이 타겟을 이용하면 rule 별로 ignore 설정을 할 수 있습니다.
prerequisites 을 사용하지 않으면 명령 라인에서 <code>-i</code>( --ignore-errors ) 옵션을 사용한 것과 같습니다.</p>
<pre><code class="lang-makefile">.IGNORE: foo bar <span class="hljs-comment"># foo, bar 타겟에만 적용</span>
.IGNORE: <span class="hljs-comment"># 모든 타겟에 적용</span>
----------------------------------------------------
.IGNORE: foo
foo :
touch $@
false
@echo target: $@
<span class="hljs-comment">########## 실행 결과 ##########</span>
touch foo
false
make: [Makefile:6: foo] Error 1 (ignored) <span class="hljs-comment"># shell 명령의 오류가 ignored 되고</span>
target: foo <span class="hljs-comment"># 마지막 명령도 실행된다.</span>
</code></pre>
<p><a name="intermediate"></a></p>
<h4 id="intermediate">.INTERMEDIATE:</h4>
<p>실행 중에 implicit rule 에의해 생성되는 중간 파일을 intermediate file 이라고 합니다.
다음을 보면 hello.y 로부터 hello.c 가 생성되고 hello.c 로부터 hello.o 가 생성되고
마지막으로 hello.o 로부터 hello 가 생성됩니다.
매칭되는 hello.y 는 현재 존재하는 파일이고 hello 와 hello.o 는 rule 에 explicit 하게
정의되어 있으므로 intermediate file 이 되지 않지만
hello.c 같은 경우는 중간에 implicit rule 에의해 생성되는 intermediate file 이 됩니다.
기본적으로 intermediate file 은 make 이 종료될 때 자동으로 삭제가 됩니다.</p>
<blockquote>
<p>.INTERMEDIATE 타겟의 prerequisites 으로 패턴은 사용할 수 없습니다.</p>
</blockquote>
<pre><code class="lang-makefile">sh$ touch hello.y <span class="hljs-comment"># 먼저 hello.y 파일을 생성</span>
-------------------------------------------------------
%.c : %.y
@echo making $@ from $<
@touch $@
%.o : %.c
@echo making $@ from $<
@touch $@
hello : hello.o
@echo making $@ from $<
@touch $@
<span class="hljs-comment">######### 실행 결과 #########</span>
sh$ make
making hello.c from hello.y
making hello.o from hello.c
making hello from hello.o
rm hello.c <---- intermediate 파일인 hello.c 는 자동 삭제된다.
</code></pre>
<p>hello.o 같이 explicit 하게 지정된 파일이라도
<code>.INTERMEDIATE</code> 타겟에 등록하면 자동으로 삭제됩니다.</p>
<pre><code class="lang-makefile"><span class="hljs-comment"># 위 Makefile 에 다음 라인을 추가하고 실행</span>
.INTERMEDIATE: hello.o
<span class="hljs-comment">######### 실행 결과 #########</span>
sh$ make
making hello.c from hello.y
making hello.o from hello.c
making hello from hello.o
rm hello.o hello.c <---- hello.o 파일도 자동으로 삭제된다.
</code></pre>
<h4 id="lowresolutiontime">.LOW_RESOLUTION_TIME:</h4>
<p><code>stat</code> shell 명령을 이용하면 특정 파일의 <code>Modify timestamp</code> 정보를 볼 수 있습니다.
make 은 이정보를 이용하여 파일들을 비교한 후에 타겟 파일을 update 할지 판단합니다.
이 정보는 보통 초 단위 이하까지 표시되는 high resolution time 이 사용되는데요.
그런데 특정 시스템에서 사용되는 명령 중에는 시간을 설정할때 초 단위까지만
사용하는 low resolution time 을 사용한다고 합니다.
그러면 파일을 비교할때 초 단위 이하 값이 잘려나가서 실제는 최신 상태임에도 불구하고 약간 old 상태가 되는데요.
이와 같은 문제가 발생할 경우 해당 파일을 <code>.LOW_RESOLUTION_TIME</code> 타겟에
등록하면 초 단위 비교를 하게 되어 문제를 해결할 수 있습니다.</p>
<blockquote>
<p>archive 파일 멤버의 경우는 항상 low resolution time 을 사용하므로 따로 이타겟에
등록할 필요는 없습니다.</p>
</blockquote>
<pre><code class="lang-makefile">.LOW_RESOLUTION_TIME: dst
dst: src
cp -p src dst
</code></pre>
<p><a name="notparallel"></a></p>
<h4 id="notparallel">.NOTPARALLEL:</h4>
<p>이 타겟이 설정되어 있으면 make 명령 라인에서 <code>-j</code> 옵션을 사용해도 Makefile 이 serially 실행됩니다.
이것은 타겟이 설정된 해당 Makefile 단위로 적용되는 것으로 sub-make 에는 영향을 주지 않습니다.</p>
<blockquote>
<p>.NOTPARALLEL 타겟의 prerequisites 은 사용되지 않습니다.</p>
</blockquote>
<h4 id="oneshell">.ONESHELL:</h4>
<p>recipe 에서는 명령이 실행될 때 라인 단위로 shell 프로세스가 생성되어 실행됩니다.
<code>.ONESHELL</code> 타겟을 설정하면 recipe 에있는 모든 명령들이 하나의 shell 프로세스에서 실행되고
here document 같은 multi-line 명령도 사용할 수 있게됩니다.
이 타겟은 룰 별로는 설정할 수 없고 한번 설정하면 전체 makefile 에 적용됩니다.
<code>@</code>, <code>-</code>, <code>+</code> prefix 문자를 사용할 경우는 첫 라인에 한번만 위치시키면 됩니다.</p>
<blockquote>
<p>.ONESHELL 타겟의 prerequisites 은 사용되지 않습니다.</p>
</blockquote>
<pre><code class="lang-makefile">foo : bar foo : bar
@echo $@ shell PID: $$$$ @echo $@ shell PID: $$$$
@echo $@ shell PID: $$$$ echo $@ shell PID: $$$$
bar : .ONESHELL:
@echo $@ shell PID: $$$$
@echo $@ shell PID: $$$$ bar : <span class="hljs-comment"># heredoc 을 사용할 수 있다.</span>
@cat <<END
$@ shell PID: $$$$
$@ shell PID: $$$$
END
<span class="hljs-comment">######### 실행 결과 ######### ######### 실행 결과 #########</span>
bar shell PID: 27442 bar shell PID: 27551
bar shell PID: 27443 각기 다른 PID bar shell PID: 27551
foo shell PID: 27444 foo shell PID: 27552 <span class="hljs-comment"># rule 별로 동일한 PID</span>
foo shell PID: 27445 foo shell PID: 27552
</code></pre>
<h4 id="phony">.PHONY:</h4>
<p>phony 는 사전에서 찾아보면 가짜라는 뜻을 가지고 있는요.
말 그대로 파일이 아닌 가짜 타겟을 지정하는데 사용됩니다.
<code>.PHONY</code> 타겟으로 지정을 하면 update 체킹도 하지 않고
타겟 파일이 존재하던 안하던 상관없이 항상 rule 이 실행되게 됩니다.</p>
<blockquote>
<p>.PHONY 타겟의 prerequisites 으로 pattern 은 사용할 수 없습니다.<br>.PHONY 타겟으로 지정하더라도 makefile 실행시 같은 rule 이 중복 실행되지는 않습니다.</p>
</blockquote>
<pre><code class="lang-makefile"><span class="hljs-phony"><span class="hljs-keyword">.PHONY</span>: all foo bar # all, foo, bar 는 가짜 타겟으로 항상 실행된다.</span>
all : bar foo
foo : bar <span class="hljs-comment"># phony 타겟으로 지정하더라도 bar 가 두번 실행되지는 않는다.</span>
@echo fooooo
bar :
@echo barrrr
<span class="hljs-comment">#### 실행 결과 ####</span>
barrrr
fooooo
</code></pre>
<p><a name="precious"></a></p>
<h4 id="precious">.PRECIOUS:</h4>
<p>recipe 가 실행 중에 signal 에의해 비정상 종료될 경우 ( 예를 들면 ctrl-c 에의해 )
make 은 먼저 타겟 파일이 update 되었는지 체킹 한 후에 update 된 상태라면 해당 타겟 파일을 삭제합니다.
이것이 필요한 이유는 만약에 빌드 중간에 부분적으로 타겟 파일이 수정된 상태에서
종료가 돼버리면 해당 타겟 파일은 사용할 수 없는 상태임에도 불구하고 최신으로 update 된 상태가 되므로
나중에 다시 make 을 실행할 때 해당 룰이 실행되지 않게 되기 때문입니다.
<code>.PRECIOUS:</code> 타겟에 등록하면 이와 같은 signal 에의한 삭제와 implicit rule 에서 intermediate 파일의 삭제 처리가 disable 됩니다.</p>
<blockquote>
<p>.PRECIOUS 타겟의 prerequisites 으로 패턴을 사용할 수 있습니다.</p>
</blockquote>
<pre><code class="lang-makefile">foo :
touch $@
sleep 10
@echo target: $@
<span class="hljs-comment">###### 실행 결과 ######</span>
touch foo <span class="hljs-comment"># 타겟 파일을 update</span>
sleep 10 <span class="hljs-comment"># sleep 상태에서 ctrl-c 로 종료</span>
^Cmake: *** Deleting file 'foo' <span class="hljs-comment"># 타겟 파일이 update 된 상태이므로 삭제된다.</span>
make: *** [Makefile:5: foo] Interrupt
----------------------------------------------------------------
<span class="hljs-comment"># 이번에는 Makefile 에 다음을 추가하고 실행</span>
.PRECIOUS: foo
<span class="hljs-comment">###### 실행 결과 ######</span>
touch foo
sleep 10
^Cmake: *** [Makefile:6: foo] Interrupt <span class="hljs-comment"># 타겟 파일이 삭제되지 않는다.</span>
</code></pre>
<p>.PRECIOUS 의 prerequisites 으로 패턴을 사용할 수 있습니다.</p>
<pre><code class="lang-makefile">.PRECIOUS: %.o <span class="hljs-comment"># %.o 패턴을 사용</span>
%.o :
touch $@
sleep 10
@echo target: $@
<span class="hljs-comment">###### 실행 결과 ######</span>
sh$ make foo.o
touch foo.o
sleep 10
^Cmake: *** [Makefile:5: foo.o] Interrupt
</code></pre>
<p><a name="secondary"></a></p>
<h4 id="secondary">.SECONDARY:</h4>
<p>explicit rule 에서 파일을 <code>.SECONDARY</code> 로 등록하면
implicit rule 에서 intermediate 파일처럼 동작합니다.
다시 말해서 chain 중간에 파일이 없다고 해서 새로 생성하지 않습니다.
다음 왼쪽의 일반적인 경우는 foo.c 파일을 삭제하면 foo.c 와 foo.o 가 새로
생성되지만 오른쪽 예제에서처럼 foo.c 를 <code>.SECONDARY</code> 로 등록하면 새로 생성되지 않습니다.</p>
<blockquote>
<p>.SECONDARY 타겟의 prerequisites 으로 패턴은 사용할 수 없습니다.</p>
</blockquote>
<pre><code class="lang-makefile"> .SECONDARY: foo.c <span class="hljs-comment"># foo.c 를 SECONDARY 로 등록</span>
foo.o: foo.c foo.o: foo.c
@echo ">>> $@ from $<" @echo ">>> $@ from $<"
touch $@ touch $@
foo.c: foo.y foo.c: foo.y
@echo ">>> $@ from $<" @echo ">>> $@ from $<"
touch $@ touch $@
foo.y: foo.y:
@echo ">>> $@" @echo ">>> $@"
touch $@ touch $@
<span class="hljs-comment">####### 실행 결과 ####### ####### 실행 결과 #######</span>
sh$ make foo.o sh$ make foo.o
>>> foo.y >>> foo.y
touch foo.y touch foo.y
>>> foo.c from foo.y >>> foo.c from foo.y
touch foo.c touch foo.c
>>> foo.o from foo.c >>> foo.o from foo.c
touch foo.o touch foo.o
sh$ rm -f foo.c sh$ rm -f foo.c
sh$ make foo.o sh$ make foo.o
>>> foo.c from foo.y make: 'foo.o' is up to date.
touch foo.c <span class="hljs-comment"># foo.c 는 secondary 이므로</span>
>>> foo.o from foo.c <span class="hljs-comment"># foo.o foo.c 가 새로 생성되지 않는다.</span>
touch foo.o
</code></pre>
<p>또한 <code>.SECONDARY</code> 타겟은
implicit rule 에서 intermediate file 이 자동으로 삭제되는 것을 방지합니다.</p>
<pre><code class="lang-makefile"><span class="hljs-comment"># intermediate 파일인 hello.c 를 SECONDARY 로 등록</span>
.SECONDARY: hello.c
%.c : %.y
@echo making $@ from $<
@touch $@
%.o : %.c