-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables_and_functions.html
1355 lines (895 loc) · 86.8 KB
/
variables_and_functions.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>Variables and Functions | 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="./multiline_variables.html" />
<link rel="prev" href="./bug_reports.html" />
</head>
<body>
<div class="book"
data-level="2"
data-chapter-title="Variables and Functions"
data-filepath="variables_and_functions.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 active" 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 " 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="variables-and-functions">Variables and Functions</h1>
<p>Make 은 shell 과달리 강력한 변수, 대입 연산 기능을 가지고 있습니다.
make 의 메인 기능은 물론 의존관계를 잘 분석해서 룰을 작성하는 것이지만
실제 makefile 작성에 있어서 중요하고 활용을 잘해야 되는 부분은 변수입니다.</p>
<p>Makefile 의 특징 중에 하나는 기본적으로 라인 단위라는 것입니다.
이것은 코드를 작성할 때뿐만 아니라 shell 명령의 출력이 변수에 저장될 때도
newline 이 space 로 변경되어 하나의 라인으로 결과가 저장됩니다.
make 에서는 기본적으로 라인 사이즈에 제한이 없습니다.</p>
<p>make 변수는 변수 이름과 value 를 작성하는데 문자 사용에 제한이 없습니다.
이것은 make 을 사용하는데 있어서 아주 중요한 개념인데 value 에는 make script,
shell script 를 작성해 대입할 수 있기 때문에 newline 외에 어떤 문자도 사용할 수 있고
변수 이름은 <code>:</code>( rule ), <code>#</code>( comment ), <code>=</code>, <code>whitespace</code> 문자를 제외하고 어떤 문자도 사용할 수 있습니다.</p>
<blockquote>
<p>변수 이름으로 대,소문자, 숫자, <code>_</code> 이외의 문자를 사용하는 것은 shell 종류에 따라 export 가
안될 수 있습니다. 그리고 <code>.</code> 으로 시작하는 대문자 변수는 make 자체에서 사용될 수 있습니다.<br>( whitespace 문자는 space, tab, newline 을 말합니다. )</p>
</blockquote>
<pre><code class="lang-makefile">@!%/'"& := ' " ` \ \\ / * ? ! ~ = | & ; @ + ^ < > { } ( ) [ ]
^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
name value
$(info $(@!%/'"&)) <span class="hljs-comment"># @!%/'"& 변수값 출력</span>
실행 결과: ' " ` \ \\ / * ? ! ~ = | & ; @ + ^ < > { } ( ) [ ]
</code></pre>
<p>make 에서의 대입 연산은 shell 과 달리 먼저 변수 확장, 함수 실행이 완료된 후에 처리됩니다.
따라서 연산자 왼쪽, 오른쪽 모두에서 변수, 함수를 사용할 수 있고,
기본적으로 변수는 nesting 해서 사용하는 것이 가능합니다.</p>
<pre><code class="lang-makefile"><span class="hljs-constant">aa</span> := foo
<span class="hljs-constant">bb</span> := bar
$(aa)$(bb) := hello $(aa)$(bb) variable <span class="hljs-comment"># foobar 변수에 값을 대입</span>
$(info $(aa)$(bb)) <span class="hljs-comment"># foobar</span>
$(info $($(aa)$(bb))) <span class="hljs-comment"># 먼저 $(aa)$(bb) 가 foobar 로 확장되고 $(foobar) 값이 출력된다.</span>
$(info $(foobar))
<span class="hljs-comment">###### 실행 결과 ######</span>
foobar
hello foobar variable
hello foobar variable
</code></pre>
<blockquote>
<p>테스트할 때는 Makefile 파일에 위 코드를 작성한 후에 프롬프트 상에서 make 명령을 실행하면 됩니다.<br>한가지 주의해야 될 점은 대입 연산 라인에 주석이 포함된 경우에는 먼저 제거해야 됩니다. ( <a href="#comment">참조</a> )<br>그리고 실행이 안되고 오류가 발생하면 항상 recipe 라인에서 <code>tab</code> 문자를 확인하세요 !</p>
</blockquote>
<h4 id="변수-사용-방법">변수 사용 방법</h4>
<p><code>1</code> 문자 변수를 사용할 때는 괄호가 필요 없지만, <code>2</code> 문자 이상은 반드시 괄호를 사용해야 합니다.</p>
<pre><code class="lang-makefile"><span class="hljs-constant">A</span> := hello
<span class="hljs-constant">text</span> := THISIS$ATEST # 1 문자 변수는 사용시 괄호가 필요없다.
$(info $(text))
결과: THISIShelloTEST
<span class="hljs-constant">AA</span> := hello # 2 문자 변수
<span class="hljs-constant">text</span> := THISIS$AATEST # $A 값은 empty 가되고 뒤의 A 는 그대로 프린트
$(info $(text))
결과: THISISATEST
<span class="hljs-constant">AA</span> := hello
<span class="hljs-constant">text</span> := THISIS<span class="hljs-variable">$(AA)</span>TEST # 2 문자 이상은 반드시 괄호를 사용해야 합니다.
$(info $(text))
결과: THISIShelloTEST
</code></pre>
<p>괄호는 <code>$( )</code> ,<code>${ }</code> 두 가지 형태를 모두 사용할 수 있습니다.
그런데 <code>${ }</code> 는 shell 의 매개변수 확장과 같으므로 구분하기가 어렵습니다.</p>
<pre><code class="lang-makefile"><span class="hljs-constant">FOO</span> := 100
<span class="hljs-constant">BAR</span> := <span class="hljs-variable">$(FOO)</span> ${FOO}
$(info $(BAR) ${BAR})
결과: 100 100 100 100
</code></pre>
<h4 id="변수의-origin-우선순위">변수의 origin 우선순위</h4>
<p>make 에서 사용되는 변수는 makefile 에서 정의한 변수 외에, 환경 변수, 명령 라인에서
설정한 변수, make 에서 default 로 제공되는 변수가 사용될 수 있습니다.
따라서 makefile 에서 변수를 정의하지 않았더라도 환경 변수가 존재하면 조건 지시자를
이용해 값을 체크할 때 참이 되므로 주의할 필요가 있습니다.</p>
<pre><code class="lang-makefile">sh$ export PROGRAMS=foobar sh$ cat Makefile
<span class="hljs-comment"># 환경 변수 적용을 방지하기 위한 가드</span>
sh$ cat Makefile PROGRAMS :=
ifdef PROGRAMS ifdef PROGRAMS
$(info $(PROGRAMS)) $(info $(PROGRAMS))
endif endif
-------------------------- ----------------------
sh$ make sh$ make
foobar
</code></pre>
<p>make 명령 실행시 명령 라인에서 변수값을 전달할경우 makefile 에서 정의한 변수에
우선해서 사용됩니다.
따라서 이것을 활용하면 매번 직접 makefile 을 수정할 필요가 없습니다.</p>
<blockquote>
<p>자세한 설명은 <a href="builtin_functions/origin_function.html">orgin</a> 함수를 참조하세요</p>
</blockquote>
<pre><code class="lang-sh"><span class="hljs-comment"># CC 변수 값으로 makefile 에서 정의한 값 대신에 clang 이 사용된다.</span>
sh$ make CC=clang
</code></pre>
<h3 id="functions">Functions</h3>
<p>make 변수는 단순 value 뿐만 아니라 스크립트 코드를 대입해서 함수처럼 사용할 수가 있습니다.
다음을 보면 search 변수에 스크립트를 대입해서 call 함수를 이용해 실행시키는데
이때 date 이 함수의 첫 번째 인수로 전달되고 <code>$(1)</code> 의 값으로 사용됩니다.</p>
<blockquote>
<p>자세한 설명은 <a href="builtin_functions/call_function.html">call</a> 함수를 참조하세요</p>
</blockquote>
<pre><code class="lang-makefile"><span class="hljs-comment"># PATH 환경변수 목록에서 파일이 존재하는지 검색</span>
<span class="hljs-constant">search</span> = <span class="hljs-variable">$(firstword $(wildcard $(addsuffix /$(1)</span>,<span class="hljs-variable">$(subst :, ,$(PATH)</span>))))
<span class="hljs-constant">result</span> := <span class="hljs-variable">$(call search,date)</span>
$(info $(result))
실행 결과: /bin/date
</code></pre>
<p>위에서 스크립트 코드를 보면 <code>( )</code> 괄호가 계속 이어지는 것이
<a href="http://tsgates.github.io/emacsbook/chap3.html" target="_blank">LISP</a> 함수형 언어를 닮았죠.
LISP 언어가 대단한게 실제 언어의 설계도가 A4 용지 한장 정도뿐이 안된다고 합니다.
그런데도 하나의 프로그래밍 언어로 충분히 역할을 할 수 있다는 것입니다
( 가장 안쪽 괄호부터 차례로 실행해 올라가기만 하면 되죠.
어떤 언어건 작성한 코드를 파싱하면 결과가 LISP 언어 형태가 됩니다
[<a href="https://en.wikipedia.org/wiki/S-expression" target="_blank">참조</a>] ).</p>
<p>make 에서 제공되는 스크립트 기능은 LISP 언어와 달리 기본적인 연산자도 제공되지 않고,
데이터 타입도 없고 단순 텍스트 프로세싱입니다.
따라서 스크립트 자체로 할 수 있는 것은 많지 않고
프로젝트를 빌드 하는데 주로 사용되는 파일명, 경로명, 리스트 프로세싱 built-in 함수들을
활용하는 것입니다.
하지만 <code>$(shell ...)</code> 함수를 이용하면 외부 명령을 실행시킬 수 있기 때문에 필요한 작업을 처리할 수 있습니다.</p>
<h4 id="builtin-함수-사용자-정의-함수">Built-in 함수, 사용자 정의 함수</h4>
<p>make 에서 사용되는 함수에는 built-in 함수와 사용자 정의 함수가 있습니다.
차이점은 함수에 인수를 전달할 때 사용자 정의 함수는 call 함수를 사용해야 됩니다.
전달할 인수가 없을 경우는 일반 변수를 사용하는 것과 call 함수를 사용하는 것은 차이가 없습니다.
함수에 인수를 전달할 때는 <code>,</code> 문자로 구분합니다.</p>
<pre><code class="lang-makefile"><span class="hljs-comment"># patsubst, filter 함수는 built-in 함수로 호출시 call 함수가 필요없다.</span>
<span class="hljs-comment"># 함수에 인수를 전달할 때는 ',' 문자로 구분하여 작성합니다.</span>
<span class="hljs-constant">file_y</span> := <span class="hljs-variable">$(patsubst %.y,%.c,$(filter %.y,$(files)</span>))
<span class="hljs-comment"># 사용자 정의 함수를 호출할 때 인수를 전달하려면 call 함수를 사용해야 합니다.</span>
<span class="hljs-constant">reverse</span> = $2 $1
<span class="hljs-constant">res</span> := <span class="hljs-variable">$(call reverse,aaa,bbb)</span>
<span class="hljs-comment"># 함수 호출시 전달할 인수가 없을 경우는 (1), (2) 는 차이가 없습니다.</span>
<span class="hljs-constant">AA</span> = <span class="hljs-variable">$(shell echo hello make function)</span>
<span class="hljs-constant">res</span> := <span class="hljs-variable">$(AA)</span> ----- (1)
<span class="hljs-constant">res</span> := <span class="hljs-variable">$(call AA)</span> ----- (2)
</code></pre>
<p>전달된 인수는 shell 에서처럼 숫자 변수에 자동으로 할당됩니다.</p>
<pre><code class="lang-makefile"><span class="hljs-comment"># $1 값은 aaa 가 되고, $2 값은 bbb 가 된다. ( $0 은 함수명인 reverse )</span>
<span class="hljs-constant">reverse</span> = $2 $1
<span class="hljs-constant">res</span> := <span class="hljs-variable">$(call reverse,aaa,bbb)</span> # 결과로 bbb aaa 가 반환된다.
<span class="hljs-constant">foo</span> = <span class="hljs-variable">$(info name: $0, arg1: $1, arg2: $2 )</span>
$(call foo,111,222)
결과: name: foo, arg1: 111, arg2: 222
</code></pre>
<p>함수에 인수를 전달할 때는 <code>,</code> 문자로 구분하는데 사이에 공백이 있을경우 값에 포함되므로 주의할 필요가 있습니다.</p>
<pre><code class="lang-makefile">define foo define foo
$(info xxx$1xxx$2xxx$3xxx) $(info xxx$1xxx$2xxx$3xxx)
endef endef
$(call foo,111,222,333) $(call foo, 111,222 , 333 ) <span class="hljs-comment"># ',' 다음에 공백이 포함됨</span>
<span class="hljs-comment">##### 실행 결과 ##### ##### 실행 결과 #####</span>
xxx111xxx222xxx333xxx xxx 111xxx222 xxx 333 xxx <span class="hljs-comment"># 전달된 값에도 공백이 포함된다.</span>
</code></pre>
<p>예를 들어 인수의 값으로 파일 리스트가 오는 곳에서는 공백이 문제가 되지 않지만
( 공백에 의해 파일들이 분리되므로 )
함수의 반환값으로 사용되는 인수에서는 공백이 그대로 결과값에 포함됩니다.</p>
<pre><code class="lang-makefile"><span class="hljs-constant">files</span> := aaa.c bbb.c ccc.c
<span class="hljs-comment"># 인수 값으로 파일 리스트가 오는 곳에는 공백이 포함돼도 상관없다.</span>
<span class="hljs-constant">file_o</span> := <span class="hljs-variable">$(patsubst %.c,%.o, $(filter %.c, $(files)</span>))
$(info $(file_o))
실행결과: aaa.o bbb.o ccc.o
<span class="hljs-comment"># 함수의 반환값으로 사용되는 인수에서는 공백이 그대로 값에 포함된다.</span>
<span class="hljs-constant">file_o</span> := <span class="hljs-variable">$(patsubst %.c, %.o,$(filter %.c,$(files)</span>))
$(info $(file_o))
실행결과: aaa.o bbb.o ccc.o
</code></pre>
<p>기본적으로 변수, 함수는 makefile 내의 어떤 위치에서도 사용할 수 있습니다.
rule 의 targets 이나 prerequisites 부분에서도 사용할 수 있고
recipe 를 작성하는데도 사용할 수 있습니다.
특히 함수 반환값이 empty 인 info, warning, error, eval 같은 builtin 함수들은
syntax error 없이 어떤 위치에서도 사용할 수 있습니다.</p>
<h3 id="대입-연산자">대입 연산자</h3>
<p>위의 search 사용자 정의함수 예제를 보면 search 변수에 스크립트 코드를 대입할 때는
<code>=</code> 연산자가 사용되고, 함수 실행 결과를 result 변수에 대입할 때는 <code>:=</code> 연산자가
사용된 것을 볼 수 있습니다.</p>
<p>make 변수에는 두 가지 종류 ( flavor ) 가 있습니다.</p>
<ol>
<li>대입 연산시 우측 value 에 사용된 변수, 함수가 확장, 실행이 완료되어 결과가 저장되는 simple 변수</li>
<li>대입 연산시 우측 value 에 사용된 변수, 함수가 확장, 실행 없이 문자 그대로 저장되는 recursive 변수<br>( recursive 변수는 나중에 변수가 사용되는 시점에서 확장, 실행이 발생하게 됩니다.)</li>
</ol>
<p>따라서 스크립트 코드는 실제 변수가 사용되는 시점에서 전달된 인수와 함께
실행돼야 하므로 <code>=</code> recursive 연산자를 사용하고,
result 변수는 실행이 완료된 값이 저장돼야 하므로 <code>:=</code> simple 연산자를 사용한 것입니다.</p>
<p>다음은 make 에서 사용할 수 있는 대입 연산자를 정리해 놓은 것입니다.</p>
<table>
<thead>
<tr>
<th style="text-align:center">Operator</th>
<th>Description</th>
<th>Flavor</th>
<th>Parse</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:center"><strong><code>:=</code></strong></td>
<td>대입</td>
<td>simple</td>
<td>immediate</td>
</tr>
<tr>
<td style="text-align:center"><strong><code>=</code></strong></td>
<td>대입</td>
<td>recursive</td>
<td>deferred</td>
</tr>
<tr>
<td style="text-align:center"><strong><code>+=</code></strong></td>
<td>append</td>
<td>recursive or simple<br>( default 는 recursive )</td>
<td>deferred or immediate</td>
</tr>
<tr>
<td style="text-align:center"><strong><code>?=</code></strong></td>
<td>undefined 일경우 대입</td>
<td>recursive</td>
<td>deferred</td>
</tr>
<tr>
<td style="text-align:center"><strong><code>!=</code></strong></td>
<td>shell 명령 실행 후 대입</td>
<td>recursive</td>
<td>immediate</td>
</tr>
</tbody>
</table>
<p>Parse 항목은 value 에 있는 식이 언제 실행되는지를 나타내는데 simple 연산자의 경우는
대입 연산시 즉시( immediate ) 실행되고 recursive 연산자의 경우는 해당 변수 사용 시까지 연기( deferred ) 됩니다.
<code>!=</code> 연산자는 우측 value 값을 shell script 로 실행하므로 Parse 항목은 immediate 이지만
변수는 recursive 가 됩니다.</p>
<blockquote>
<p><a href="builtin_functions/flavor_function.html">flavor</a> builtin 함수를 이용하면 변수가
simple 변수인지 recursive 변수인지 알 수 있습니다.</p>
</blockquote>
<h4 id="">:=</h4>
<p>원래 전통적 make 에서는 simple 변수 개념이 없었습니다.
모두 recursive 변수를 사용했습니다. ( 위의 표를 보면 모두 recursive 변수죠 ).
<code>:=</code> 연산자를 사용하는 simple 변수는 나중에 gnu make 에 추가된 기능입니다.
다음은 <code>:=</code> 연산자와 <code>=</code> 를 비교해본 것인데요.
<code>=</code> 연산자의 경우는 <code>val</code> 변수 정의가 <code>foo</code> 변수 뒤에 와도 되는 것을 알 수 있습니다.</p>
<pre><code class="lang-makefile"><span class="hljs-comment"># foo 변수는 simple # foo 변수는 recursive</span>
<span class="hljs-constant">val</span> := 100 val := 100
<span class="hljs-comment"># 대입 완료후 foo 값은 100 이 된다. # 대입 완료후 foo 값은 '$(val)' 가 된다.</span>
<span class="hljs-constant">foo</span> := <span class="hljs-variable">$(val)</span> foo = <span class="hljs-variable">$(val)</span>
<span class="hljs-constant">val</span> := 200 val := 200
$(info $(foo)) $(info $(foo)) <span class="hljs-comment"># 변수가 사용되는 시점에 확장된다.</span>
결과: 100 결과: 200
</code></pre>
<h4 id="">=</h4>
<p>아래 예제는 <code>foo</code> 변수 자신의 값에 다시 world 단어를 추가하려고 한 것인데요.
이때 recursive 연산자를 사용하면 변수가 사용되는 시점에 <code>$(foo) world</code>
가 확장될 때 <code>$(foo)</code> 가 또다시 자신을 가리키게 되므로 오류가 됩니다.
따라서 이와 같은 경우 두 번째와 같이 simple 연산자를 사용해야 합니다.</p>
<blockquote>
<p><a href="builtin_functions/value_function.html">value</a> builtin 함수를 이용하면 확장되기 전의 변수값을 볼 수 있습니다.</p>
</blockquote>
<pre><code class="lang-makefile"><span class="hljs-constant">foo</span> = hello
<span class="hljs-constant">foo</span> = <span class="hljs-variable">$(foo)</span> world # 대입 연산이 완료되면 foo 값은 '<span class="hljs-variable">$(foo)</span> world' 가 된다.
$(info $(foo))
결과: Makefile:3: *** Recursive variable 'foo' references itself (eventually). Stop.
$(info $(value foo)) <span class="hljs-comment"># value builtin 함수를 이용해 확장되기 전의 변수값을 조회.</span>
결과: $(foo) world
----------------------------
<span class="hljs-constant">foo</span> = hello
<span class="hljs-constant">foo</span> := <span class="hljs-variable">$(foo)</span> world # 대입 연산이 완료되면 foo 값은 'hello world' 가 된다
$(info $(foo))
결과: hello world
$(info $(value foo))
결과: hello world
</code></pre>
<h4 id="">+=</h4>
<p><code>+=</code> 는 append 연산자로 사용되는 변수의 flavor 에 따라 각각 다르게 동작합니다.
예를 들어 simple 변수에 <code>+=</code> 연산자가 사용되면
simple 연산자로 동작하여 value 에있는 식이 실행이 완료되어 결과가 append 되고,
recursive 변수에 사용되면 recursive 연산자로 동작하여 value 에있는 식이 그대로 추가됩니다.
default 는 recursive 이므로 처음 변수 사용시 <code>+=</code> 연산자가 사용되면 recursive 변수가 됩니다.
값이 대입될 때는 먼저 앞에 space 가 하나 추가됩니다.</p>
<pre><code class="lang-makefile"><span class="hljs-comment"># foo 변수를 simple 변수로 초기화 # foo 변수를 recursive 변수로 초기화</span>
<span class="hljs-constant">foo</span> := aaa.c foo = aaa.c
<span class="hljs-constant">val</span> := bbb.c val := bbb.c
<span class="hljs-comment"># 대입 완료후 foo 값은 aaa.c bbb.c 가 된다. # 대입 완료후 foo 값은 'aaa.c $(val)' 가 된다.</span>
<span class="hljs-constant">foo</span> += <span class="hljs-variable">$(val)</span> foo += <span class="hljs-variable">$(val)</span>
<span class="hljs-constant">val</span> := ccc.c val := ccc.c
$(info $(foo)) $(info $(foo))
결과: aaa.c bbb.c 결과: aaa.c ccc.c
</code></pre>
<h4 id="">?=</h4>
<p><code>?=</code> 연산자는 변수가 undefined 상태일 경우만 값이 대입되므로 아래 첫 번째 식은
두 번째 식과 같게됩니다.</p>
<pre><code class="lang-makefile"><span class="hljs-constant">AA</span> ?= 100 ifeq "<span class="hljs-variable">$(origin AA)</span>" "undefined"
AA = 100
endif
</code></pre>
<p>따라서 다음과 같이 include 되는 파일에서 변수를 정의할때 <code>?=</code> 연산자를 사용하면
나중에 특정 makefile 에서는 다른 값을 전달하고 싶을 경우 include 전에
해당 변수를값을 정의해 주면됩니다.</p>