I'm not a makefile guru, but it looks as if there are some .o files missing in your link statement (dbcore.o, for example). That would explain your undefined references. They were present during compile, but if your linker isn't adding all the .o files in during the link phase, it'll fail. The linker takes all its instructions from the makefile, so check there.
Regards,
krich
|