Click here to Skip to main content
15,880,796 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: painted myself into a corner - again - need HELP Pin
Richard MacCutchan21-Feb-23 8:26
mveRichard MacCutchan21-Feb-23 8:26 
AnswerRe: painted myself into a corner - again - need HELP Pin
Mircea Neacsu21-Feb-23 8:49
Mircea Neacsu21-Feb-23 8:49 
AnswerRe: painted myself into a corner - again - need HELP Pin
David O'Neil21-Feb-23 15:32
professionalDavid O'Neil21-Feb-23 15:32 
GeneralMessage Closed Pin
19-Feb-23 4:20
Member 1496877119-Feb-23 4:20 
GeneralRe: C code challenge... Pin
Richard MacCutchan19-Feb-23 5:19
mveRichard MacCutchan19-Feb-23 5:19 
GeneralRe: C code challenge... Pin
CPallini19-Feb-23 20:47
mveCPallini19-Feb-23 20:47 
QuestionMessage Closed Pin
14-Feb-23 10:04
Member 1496877114-Feb-23 10:04 
QuestionRe: How to add #include to makefile ? Pin
Mircea Neacsu14-Feb-23 10:44
Mircea Neacsu14-Feb-23 10:44 
I think you'll have to explain in more detail what you want to accomplish.

Makefiles and include files are not directly related. Makefiles are "recipes" used to compile and link a binary. You write something like:
module1.o : module1.cpp inc1.h inc2.h
  gcc $(CFLAGS) -o module1.o module1.cpp
That would tell make that module1.o object file needs to be recompiled every time any of module1.cpp or inc1.h or inc2.h files changes and what is the command to compile it.
Mircea

AnswerRe: How to add #include to makefile ? Pin
Richard MacCutchan14-Feb-23 22:03
mveRichard MacCutchan14-Feb-23 22:03 
GeneralRe: How to add #include to makefile ? Pin
k505415-Feb-23 5:39
mvek505415-Feb-23 5:39 
QuestionMessage Closed Pin
14-Feb-23 4:39
Member 1496877114-Feb-23 4:39 
AnswerRe: How to manage application configuration ? Pin
Mircea Neacsu14-Feb-23 7:57
Mircea Neacsu14-Feb-23 7:57 
AnswerRe: How to manage application configuration ? Pin
jschell15-Feb-23 6:11
jschell15-Feb-23 6:11 
GeneralMessage Closed Pin
16-Feb-23 5:58
Member 1496877116-Feb-23 5:58 
GeneralRe: How to manage application configuration ? Pin
jschell16-Feb-23 6:47
jschell16-Feb-23 6:47 
QuestionMessage Closed Pin
10-Feb-23 14:24
Member 1496877110-Feb-23 14:24 
AnswerRe: Passing a pointer to object - using template - followup. Pin
Graham Breach10-Feb-23 21:35
Graham Breach10-Feb-23 21:35 
AnswerRe: Passing a pointer to object - using template - followup. Pin
Richard MacCutchan10-Feb-23 21:55
mveRichard MacCutchan10-Feb-23 21:55 
AnswerRe: Passing a pointer to object - using template - followup. Pin
CPallini10-Feb-23 23:24
mveCPallini10-Feb-23 23:24 
AnswerRe: Passing a pointer to object - using template - followup. Pin
jschell13-Feb-23 4:55
jschell13-Feb-23 4:55 
GeneralMessage Closed Pin
13-Feb-23 5:10
Member 1496877113-Feb-23 5:10 
GeneralRe: Passing a pointer to object - using template - followup. Pin
Richard MacCutchan13-Feb-23 5:37
mveRichard MacCutchan13-Feb-23 5:37 
GeneralRe: Passing a pointer to object - using template - followup. Pin
k505413-Feb-23 6:31
mvek505413-Feb-23 6:31 
GeneralRe: Passing a pointer to object - using template - followup. Pin
Gerry Schmitz13-Feb-23 6:43
mveGerry Schmitz13-Feb-23 6:43 
GeneralRe: Passing a pointer to object - using template - followup. Pin
jschell14-Feb-23 4:44
jschell14-Feb-23 4:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.