Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
If you're making a library you might also want to look at the "ar" program. It makes the *.a files.
For example, let's say you had objects called stdio.o and foo.o, you can make libstdio.a with:
ar cq libstdio.a stdio.o foo.o
Note: if libstdio.a already exists you may have to remove it. In my Makefiles I always do an rm -f before an ar, but it looks like you're using DOS/DJGPP, so I guess it would be the DEL command for you.