cmbi / kmad

Knowledge based multiple sequence alignment for intrinsically disordered proteins
http://www.cmbi.ru.nl/kmad
GNU General Public License v3.0
8 stars 4 forks source link

Remove files generated during the build #36

Closed jonblack closed 8 years ago

jonblack commented 8 years ago

Files generated by the build are included in the project. They can be removed. The following list is not exhaustive, check carefully:

Remember to add these files to .gitignore as well.

joannalange commented 8 years ago

Isn't config.h.in required for the build though..? When I run the autogen.sh script it throws an error "required file 'config.h.in' not found"

autogen.sh: aclocal && automake --add-missing && autoconf

jonblack commented 8 years ago

The AC_CONFIG_HEADERS macro generates config.h.in.

joannalange commented 8 years ago

Sorry, I don't get it;) It's the AC_CONFIG_HEADERS macro that throws the error, it needs the 'config.h.in' file to generate the 'config.h' file. Is there something I'm missing?

jonblack commented 8 years ago

The top of config.h.in has the following:

/* config.h.in. Generated from configure.ac by autoheader. */

I suspect AC_CONFIG_HEADERS calls autoheader, but I'm not sure. In any case, the file is definitely generated. Do a clean, dist-clean, and delete the generate files then go through the compilation process and put the output here and I'll see what I can do.

joannalange commented 8 years ago

Thanks for help, had to add autoheader to autogen.sh