This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
comment sources
- From: Bob Lockie <bjlockie at lockie dot ca>
- To: automake Mailing List <automake at gnu dot org>
- Date: Mon, 15 Dec 2003 01:55:51 -0500
- Subject: comment sources
I am trying to make a Makefile.am and I am having a problem that is
maybe obvious.
I have a bunch of sources in my Makefile.am that are all commented out
in the Makefile.in when I run automake.
My guess is that the suffixes are unknown (the .cpp and .ui files are
commented out but the .h files are not).
I have rules in the Makefile.am to compile the .ui and .cpp files but
maybe I need a macro in the configure.ac file?
$ automake --version
automake (GNU automake) 1.6.3
Makefile.am:
# which sources should be compiled for arson
arson_SOURCES = \
_burnerpager.ui \
...
Makefile.in:
# which sources should be compiled for arson
#_burnerpager.ui \
...