I found the following lines in a makefile tutorial, but I have some problems with bold lines.
In line 1, if I write
program_C_SRCS:=$(*.c)
he does not work. So please tell me what the wildcard is in this here. Is this word specific to the makefile only?
The textbook says that the second line will perform test substitution. Can someone tell me something about this text replacement?
Please excuse me if my questions are very simple because I am new to filament creation.
textbook link
CC:=g++ program_NAME:=myprogram **program_C_SRCS:=$(wildcard *.c)**
makefile
Abhishek gupta
source share