Hey everyone
I have this huge program which comes with different directories like lib, include, test, modules, services etc.
Every directory has a
-Makefile
-Makefile.am
-Makefile.in
The root directory has the following files
-missing
-Makefile
-Makefile.in
-Makefile.am
-configure
-configure.ac
I added two classes with 2 header files and one of the existing classes in that project includes these header files, since he instanciates objects of the new 2 classes I added.
My problem is now that I don't know where in all these files I have to modify something that my 2 classes are compiled and liked correctly. If I run the ./configure + make without any changes in one of those files, it does not create the o files of the new classes, even if I include the header files in one of the existing classes.
I don't know if I am clear, but what I want is to know which files from the above I have to modify in order that the program recompiles again, when I added the header files in the lib directory and the cc files in the lib directory?
Thank you for helping me out in all those make and configure files or for giving me a hint.