Re: [automake]error in Makefile.am

2006-11-02 Thread Praveen M R
The following ic Makefiles Makefile.am SUBDIRS = include lib bin src include/Makefile.am helloinvite_SOURCES = say.h invite.h src/Makefile.am AM_CPPFLAGS = -I$(srcdir)/../include bin_PROGRAMS = ../bin/helloinvite helloinvite_SOURCES = main.c say.c invite.c helloinvite_LDADD =

[automake]error in Makefile.am

2006-11-02 Thread Praveen M R
Hi, I am getting following message when I enter automake --add-misssing I feel I am doing wrong in Makefile.am. Under main directory i have include src lib bin directories..In include directory I am placing *.h files and in lib directory .la should be created..and in bin directoty target

[automake]error in Makefile.am

2006-11-02 Thread Praveen M R
Hi, I am getting following message when I enter automake --add-misssing I feel I am doing wrong in Makefile.am. Under main directory i have include src lib bin directories..In include directory I am placing *.h files and in lib directory .la should be created..and in bin directoty target

Re: [automake]error in Makefile.am

2006-11-02 Thread Mike Frysinger
On Thursday 02 November 2006 23:51, Praveen M R wrote: I am getting following message when I enter automake --add-misssing I feel I am doing wrong in Makefile.am. we can only guess at what you're doing wrong unless you actually post the Makefile.am -mike pgp73JtHwWvJP.pgp Description: PGP

Re: [automake]error in Makefile.am

2006-11-02 Thread Praveen M R
The following ic Makefiles Makefile.am SUBDIRS = include lib bin src include/Makefile.am helloinvite_SOURCES = say.h invite.h src/Makefile.am AM_CPPFLAGS = -I$(srcdir)/../include bin_PROGRAMS = ../bin/helloinvite helloinvite_SOURCES = main.c say.c invite.c helloinvite_LDADD =

Re: [automake]error in Makefile.am

2006-11-02 Thread Jian Wang
If you write bin_PROGRAMS = ../bin/helloinvite then you must write ___bin_helloinvite_SOURCES = main.c say.c invite.c. On 11/3/06, Praveen M R [EMAIL PROTECTED] wrote: src/Makefile.am AM_CPPFLAGS = -I$(srcdir)/../include bin_PROGRAMS = ../bin/helloinvite helloinvite_SOURCES = main.c say.c