I want to create my own library but I'm not sure quite how to do it. Below
are my files:
mylibrary.h
extern int show(void)
-----------------------------
mylibrary.c
#include
int show(void)
int show(void)
{
printf("\n Show Me the Way");
}
---------------
I need to create a library file from the mylibrary.c
cc -c mylibrary.c -o library.o
How do I create the library.a or what ever I need. I use ar? What options?
Thanks,
Chris Fowler
--
To unsubscribe: mail ">majordomo@ale.org with "unsubscribe ale" in message body.