-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtips.html
More file actions
951 lines (544 loc) · 43.1 KB
/
tips.html
File metadata and controls
951 lines (544 loc) · 43.1 KB
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
<!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>Tips | 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="prev" href="./debugging.html" />
</head>
<body>
<div class="book"
data-level="14"
data-chapter-title="Tips"
data-filepath="tips.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 " 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 active" 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="tips">Tips</h1>
<h4 id="불필요한-재-컴파일-방지하기">불필요한 재 컴파일 방지하기</h4>
<p>소스파일을 수정하였지만 실제 재 컴파일이 필요 없는 경우가 있습니다.
예를 들어 헤더 파일에 단순히 주석을 하나 추가한 경우에는 해당 헤더 파일을 사용 중인
소스파일들을 모두 다시 컴파일할 필요가 없겠죠.
이럴 때는 다음과 같은 순서로 처리하여 재 컴파일을 방지할 수 있습니다.</p>
<pre><code>1. 먼저 헤더 파일을 수정하기 전에 갱신이 필요한 파일들이 있을 경우 make 명령을 실행해서 컴파일합니다.
2. 해당 헤더 파일을 수정합니다.
3. "make -t" 명령으로 모든 오브젝트 파일들을 최신으로 만듭니다.
</code></pre><p>작업이 완료되면 다음 make 명령 실행부터는 컴파일 작업이 일어나지 않습니다.
만약에 컴파일이 필요한 파일이 있었는데도 먼저 make 명령을 실행하지 않고
헤더 파일을 수정했을 경우에는 다음과 같이하면 됩니다.</p>
<pre><code>1. "make -o headerfile" 명령은 현재 최신 상태인 headerfile 을 old 상태로 간주하여 실행하므로
이전에 갱신이 필요했던 파일들만 컴파일 할 수 있습니다.
2. "make -t" 명령으로 모든 오브젝트 파일들을 최신으로 만듭니다.
</code></pre><h4 id="무조건-전체-재-컴파일하기">무조건 전체 재 컴파일하기</h4>
<p><code>-B</code> 옵션을 사용하면 됩니다.</p>
<h4 id="recipe-실행시-사용되는-shell-프로그램-변경하기">recipe 실행시 사용되는 shell 프로그램 변경하기</h4>
<p>recipe 가 실행될 때는 shell 프로그램으로 기본적으로 <code>sh</code> 이 사용되는데요.
<code>SHELL</code> 변수를 이용하면 변경해 사용할 수 있습니다.
또한 <code>.SHELLFLAGS</code> 변수를 이용하면 shell 프로그램에 전달되는 옵션도 추가할 수 있습니다.</p>
<blockquote>
<p><a href="special_variables.html#shell">SHELL</a>,
<a href="special_variables.html#shellflags">.SHELLFLAGS</a> 변수는 target-specific 변수로도 사용이 가능합니다.</p>
</blockquote>
<pre><code class="lang-makefile">.ONESHELL:
foo : bar
@cat <<EOF
$@ : $$0
EOF
bar : SHELL := /bin/bash
bar : .SHELLFLAGS += -e <span class="hljs-comment"># errexit shell 옵션</span>
bar :
@cat <( echo $@ : $$0 ) <span class="hljs-comment"># bash 에서만 사용 가능한 프로세스 치환을 사용할 수 있다.</span>
<span class="hljs-comment">###### 실행 결과 #######</span>
bar : /bin/bash
foo : /bin/sh
------------------------------------
<span class="hljs-comment"># 간단한 명령일 경우는 다음과 같이 직접 실행해도 되겠죠.</span>
foo :
@bash -e -c 'cat <( echo $@ : $$0 )'
</code></pre>
<h4 id="shell-script-파일을-작성할-때처럼-recipe-작성하기">shell script 파일을 작성할 때처럼 recipe 작성하기</h4>
<p>recipe 에서 one-line 으로 명령을 작성하는 것이 불편할 경우 다음과 같이
multi-line 변수와 export 지시자를 활용하면 shell script 파일을 작성할 때와
동일하게 작성하여 실행시킬 수 있습니다
( 실행될 때도 하나의 shell 프로세스에서 실행됩니다 ).
한가지 shell 에서 eval 명령을 이용해 실행시키기 때문에 인수를 전달할 수가
없는데 이때는 make 의 eval 함수를 이용하면 recipe 실행전에 필요한 변수값을 설정할 수 있습니다.
해당 룰이 실행될 때만 script 변수를 export 해 사용하고 이후에는 unexport 하려면
오른쪽 예제와 같이 작성하면 됩니다.</p>
<pre><code class="lang-makefile"><span class="hljs-constant">AA</span> := 100 AA := 100
define script define script
echo shell PID : $$$$ echo shell PID : $$$$
cat <<EOF cat <<EOF
make variable AA is : $(AA) make variable AA is : $(AA)
\$$PWD variable is : "$$PWD" \$$PWD variable is : "$$PWD"
shell PID : $$$$ shell PID : $$$$
EOF <span class="hljs-comment"># EOF 뒤에 공백이 붙지 않도록 주의 EOF</span>
endef endef
export script foo ::
$(eval export script)
foo : $(eval AA := 200)
@eval "$$script" foo ::
$(eval AA := 200) @eval "$$script"
foo ::
$(eval unexport script)
<span class="hljs-comment">############# 실행 결과 ##############</span>
shell PID : 28413
make variable AA is : 200
$PWD variable is : "/home/mug896"
shell PID : 28413 <span class="hljs-comment"># 동일한 PID</span>
</code></pre>
<p>만약에 스크립트에서 make 변수를 사용할 필요가 전혀없을 경우에는
다음과 같이 value 함수를 이용해 export 를 하면
<code>$$</code> 변수를 사용할 필요도 없고 shell script 파일을 작성할때와 동일하게 작성할 수 있습니다.</p>
<pre><code class="lang-makefile">define script define script
echo shell PID : $$ echo shell PID : $$
cat <<EOF cat <<EOF
\$PWD variable is : "$PWD" \$PWD variable is : "$PWD"
shell PID : $$ shell PID : $$
EOF EOF
endef endef
<span class="hljs-comment"># 대입연산 끝부분에 공백이 붙지 않도록 주의</span>
export script := $(value script) script := $(value script)
foo : foo ::
@eval "$$script" $(eval export script)
foo ::
<span class="hljs-comment">########## 실행 결과 ########### @eval "$$script"</span>
shell PID : 28527 foo ::
$PWD variable is : "/home/mug896" $(eval unexport script)
shell PID : 28527
</code></pre>
<h4 id="shell-함수를-정의해-사용하기">shell 함수를 정의해 사용하기</h4>
<p>Multi-line 변수를 이용해 작성한 shell script 를 foreach 함수를 이용해
여러번 call 해야될 경우가 생길수 있는데 이때는 해당 shell script 가
그대로 여러번 중복 생성되어 실행되게 됩니다.
따라서 shell script 사이즈가 클 경우에는 다음과 같이 shell 함수를 정의하고
foreach 에서는 해당 shell 함수를 호출하는 것이 좋습니다.</p>
<p>foreach 에서 shell 함수 호출을 작성할 때는 마지막에 <code>;</code> 문자를 붙여야 하고
오류가 발생했을 때 make 실행을 종료하려면 오른쪽 예제와 같이
<code>set -e</code> shell 옵션을 설정하면 됩니다.</p>
<pre><code class="lang-makefile">define script define script
hello() { hello() {
echo variable AA is : $1 echo variable AA is : $1
} date -@
endef }
endef
export script := $(value script)
export script := $(value script)
foo :
$(eval AA := 100 200 300 ) foo :
@eval "$$script"; \ $(eval AA := 100 200 300 )
$(foreach V, $(AA), hello $V ; ) @set -e; eval "$$script"; \
$(foreach V, $(AA), hello $V ; )
<span class="hljs-comment">########### 실행 결과 ########### ########## 실행 결과 #########</span>
variable AA is : 100 variable AA is : 100
variable AA is : 200 date: invalid option -- '@'
variable AA is : 300 Try 'date --help' for more information.
Makefile:11: recipe for target 'foo' failed
make: *** [foo] Error 1
</code></pre>
<h4 id="export-한-변수값을-shell-script-파일로-저장하려면">export 한 변수값을 shell script 파일로 저장하려면</h4>
<p>만약에 export 한 script 변수값을 shell script 파일로 그대로 저장하려면 기본적으로 escape 문자가
처리되지 않는 <code>/bin/echo</code> 명령을 이용하거나 bash echo 명령을 사용해야 합니다.
다음 두 번째 예제에서처럼 sh 의 echo 명령을 사용하면 escape 문자가 처리되어 저장됩니다.</p>
<pre><code class="lang-makefile">define script
<span class="hljs-comment">#!/bin/bash</span>
echo -e "escape\ttest" <span class="hljs-comment"># \t escape 문자</span>
endef
. . . .
export script . . . .
foo : foo :
@/bin/echo "$$script" > script.sh @echo "$$script" > script.sh
<span class="hljs-comment">######## 실행 결과 ######## ######## 실행 결과 ########</span>
sh$ make sh$ make
sh$ cat script.sh sh$ cat script.sh
<span class="hljs-comment">#!/bin/bash #!/bin/bash</span>
echo -e "escape\ttest" echo -e "escape test" <span class="hljs-comment"># tab 처리가 된다.</span>
</code></pre>
<h4 id="recipe-에서-trap-의-사용">recipe 에서 trap 의 사용</h4>
<p>recipe 실행 중에 명령이 오류로 종료하여 make 실행이 종료될 경우 뒤처리 작업이 필요하면
shell 에서와 동일하게 trap 을 설정하면 됩니다.
<code>EXIT</code> trap 은 <code>set -e</code> shell 옵션 설정에 의해 종료될 경우에도 동일하게 실행됩니다.</p>
<pre><code class="lang-makefile"><span class="hljs-constant">TRAP</span> := set -e; trap 'test $$? != 0 && echo [ ERROR EXIT ] some cleaning ...' EXIT;
foo :
@echo $@ recipe start ...
@$(TRAP) date; date -@; date <span class="hljs-comment"># 'date -@' 명령은 오류로 종료</span>
@echo $@ recipe end ...
<span class="hljs-comment">######## 실행 결과 ########</span>
foo recipe start ...
Sun 30 Jun 2019 11:12:55 PM KST
date: invalid option -- '@'
Try 'date --help' for more information. <span class="hljs-comment"># 오류로 make 이 종료되기 전에</span>
[ ERROR EXIT ] some cleaning ... <span class="hljs-comment"># trap 에서 설정한 명령이 실행된다.</span>
Makefile:5: recipe for target 'foo' failed
make: *** [foo] Error 1
</code></pre>
<h4 id="makefile-에서-실행할-수-있는-타겟-알아내기">makefile 에서 실행할 수 있는 타겟 알아내기</h4>
<p>프롬프트 상에서 make 명령을 실행할 때 <code>tab</code> 키를 이용하면 해당 makefile 에서
실행할 수 있는 타겟 정보를 볼 수 있습니다.</p>
<pre><code class="lang-sh">sh$ make [tab]
all bar clean foo zoo
</code></pre>
<h4 id="color-메시지-출력하기">Color 메시지 출력하기</h4>
<p>color 메시지를 출력할 때 사용되는 color 코드는 메시지가 터미널로 출력될 때 필요한 것이므로
파이프나 파일로 출력될 경우는 제외하는 것이 좋습니다.
현재 실행 중인 make 명령의 stdout 과 stderr 가 터미널에 연결되어 있는지는 <a href="special_variables.html#make_term">MAKE_TERMOUT, MAKE_TERMERR</a> 변수값을 통해
알아볼 수 있습니다.
다음과 같이하면 stdout, stderr 가 터미널에 연결되어 있을 경우는 tput 명령의 실행 결과인
color 코드가 출력에 포함되지만 그렇지 않고 파이프나 파일에 연결되어 있을 경우는 제외되게 됩니다.</p>
<pre><code class="lang-makefile"><span class="hljs-comment"># color 이름 뒤에 1 이 붙은 것은 stdout 로 출력할때, 2 가 붙은 것은 stderr 로 출력할때 사용</span>
<span class="hljs-comment"># '!=' 연산자를 사용하였으므로 대입 연산시 tput 명령이 immediate 실행됩니다.</span>
<span class="hljs-constant">red1</span> != <span class="hljs-variable">$(if $(MAKE_TERMOUT)</span>,tput setaf 1,)
<span class="hljs-constant">green1</span> != <span class="hljs-variable">$(if $(MAKE_TERMOUT)</span>,tput setaf 2,)
<span class="hljs-constant">blue1</span> != <span class="hljs-variable">$(if $(MAKE_TERMOUT)</span>,tput setaf 4,)
<span class="hljs-constant">reset1</span> != <span class="hljs-variable">$(if $(MAKE_TERMOUT)</span>,tput sgr0,)
<span class="hljs-constant">red2</span> != <span class="hljs-variable">$(if $(MAKE_TERMERR)</span>,tput setaf 1,)
<span class="hljs-constant">green2</span> != <span class="hljs-variable">$(if $(MAKE_TERMERR)</span>,tput setaf 2,)
<span class="hljs-constant">blue2</span> != <span class="hljs-variable">$(if $(MAKE_TERMERR)</span>,tput setaf 4,)
<span class="hljs-constant">reset2</span> != <span class="hljs-variable">$(if $(MAKE_TERMERR)</span>,tput sgr0,)
$(info $(green1)hello make stdout color$(reset1)) <span class="hljs-comment"># stdout 출력</span>
$(warning $(red2)hello make stderr color$(reset2)) <span class="hljs-comment"># stderr 출력</span>
color :
@echo "$(blue1)hello recipe stdout color$(reset1)" <span class="hljs-comment"># stdout 출력</span>
@echo "$(red2)hello recipe stderr color$(reset2)" >&2 <span class="hljs-comment"># stderr 출력</span>
<span class="hljs-comment">############### 실행 결과 ################</span>
bash$ make <span class="hljs-comment"># 터미널로 출력되므로 color 로 출력된다</span>
hello make stdout color
Makefile:12: hello make stderr color
hello recipe stdout color
hello recipe stderr color
bash$ make |& cat <span class="hljs-comment"># 파이프로 출력되므로 color 코드가 제외된다</span>
hello make stdout color
Makefile:12: hello make stderr color
hello recipe stdout color
hello recipe stderr color
</code></pre>
</section>
</div>
</div>
</div>
<a href="./debugging.html" class="navigation navigation-prev navigation-unique" aria-label="Previous page: Debugging"><i class="fa fa-angle-left"></i></a>
</div>
</div>
<script src="gitbook/app.js"></script>
<script src="gitbook/plugins/gitbook-plugin-search/lunr.min.js"></script>
<script src="gitbook/plugins/gitbook-plugin-search/search.js"></script>
<script src="gitbook/plugins/gitbook-plugin-sharing/buttons.js"></script>
<script src="gitbook/plugins/gitbook-plugin-fontsettings/buttons.js"></script>
<script>
require(["gitbook"], function(gitbook) {
var config = {"highlight":{},"search":{"maxIndexSize":1000000},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2}};
gitbook.start(config);
});
</script>
</body>
</html>