You're not building ManagedLog.cpp
. Your compile sequence should look something like this example (simplified for clarity):
- compile
RunLog.c
intoRunLog.o
- compile
ManagedLog.c
intoManagedLog.o
- link
RunLog.o
andManagedLog.o
intoRunLog.exe
Steps 1 & 2 could be in the other order if you like.
Carl Norum
2010-06-25 18:46:25