0

I am trying to add some functionality to existing makefile project. I wrote some .c and .h files. After some googling time I found that Makefile.am should be modified and run autoreconf will do what I need.

Can some one please explain how to do this exactly?

Thank you. FYI I am trying to compile http://sipe.sourceforge.net/

ishanaba
  • 65
  • 8

1 Answers1

2

You need to modify the Makefile.am found under the directory where you've kept you .c and .h files. Take a look at this file if you've .c file under telepathy directory, add your .c file in this Makefile.am. Hope this will help!

rakib_
  • 136,911
  • 4
  • 20
  • 26
  • Thanks rakib. I found very useful information here http://mij.oltrelinux.com/devel/autoconf-automake/ and manual http://www.gnu.org/software/autoconf/manual/autoconf.html#Writing-Autoconf-Input – ishanaba Aug 13 '13 at 10:01