[EMAIL PROTECTED] wrote:
Hi,
I am a new to the makefile world. I am trying to write a makefile
which consists of two files,but at the compilation time it is giving me
linking error. I do have a feeling that it is makefile error.
/**Makefile***/
LOCAL_OBJS=DecryptApi.o TESTDRV.o
[EMAIL PROTECTED] wrote:
Hi,
Any pointers are highly appreciated.
This isn't a makefile problem, but a gcc-link problem.
Most Unix compilers are one-pass, unlike most MS-Windows
compilers which are two-pass.
This means that object file 'a' must be listed after any other
objects that provide s
Hi,
I am a new to the makefile world. I am trying to write a makefile
which consists of two files,but at the compilation time it is giving me
linking error. I do have a feeling that it is makefile error.
/**Makefile***/
LOCAL_OBJS=DecryptApi.o TESTDRV.o
TESTDRV: $(LOCAL_OBJS