help for Makefile in unix

Go4Expert Member
7Apr2010,14:26   #1
Poonamol's Avatar
Hello,

I had created a makefile for my simple C application.
I am able to create object and library file through makefile sucessfully.
I had written a code snippet for executable file also, but somehow its not working.
Here is the code for executable in makefile:
$(BIN)/EXT: $(OBJ)/EXT.o (respective dependent file paths)
$(CCC) -o $@ $(OBJ)/EXT.o .a (respective dependent file paths) $(CLDFLAGS) $(CLIBPATHS) $(CLIBS)

How to get the executable from makefile?

Help me out please!!!!!!!!!!
Thanks in advance.
Go4Expert Member
8Apr2010,08:50   #2
Poonamol's Avatar
Hello,

Anybody is there to help me out about this issue?