Hi I am using autoconf/make to build using SDCC as the target compiler. SDCC generates five files from the input C sources with the extensions - .map, .lst, .asm, .elf and .rel I see that somehow (maybe due to a mistake in my conf file) when I run ./configure, it takes in .asm as input as well as output file !! whereas it should take .c as input and .ihx as output file formats. I am confused. Am I doing something wrong in the conf file (should i enforce input/output file formats, if so, how ?) ? Or is that autoconf/make does not support SDCC ? Regards Kallol Here is my conf file : AC_INIT(deploy.c) AM_INIT_AUTOMAKE(Container,0.0.0) AC_CONFIG_HEADER(config.h) AC_SUBST(CC,sdcc) AC_PROG_CC #AC_PROG_CXX AC_PROG_INSTALL #AC_PROG_RANLIB #AC_DISABLE_SHARED #AC_PROG_LIBTOOL AC_OUTPUT(Makefile ../../src/Makefile ) _______________________________________________ Autoconf mailing list Autoconf@xxxxxxx http://lists.gnu.org/mailman/listinfo/autoconf