Re: Linking Error

2005-10-11 Thread N. Shamsundar
[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

Re: Linking Error

2005-10-09 Thread Colin S. Miller
[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

Linking Error

2005-10-07 Thread archna . mittal
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