This is the mail archive of the automake@gnu.org mailing list for the automake project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: comment sources


On 2003-12-15T01:55-0500, Bob Lockie wrote:
) My guess is that the suffixes are unknown (the .cpp and .ui files are
) commented out but the .h files are not).
 ...
) $ automake --version
) automake (GNU automake) 1.6.3

I do not seem to be able to reproduce using automake 1.7.8.

Makefile.am
	bin_PROGRAMS = arson

	# which sources should be compiled for arson
	arson_SOURCES = \
	_burnerpager1.ui \
	_burnerpager2.cc \
	_burnerpager3.cpp \
	_burnerpager4.c

Makefile.in
 ...
	bin_PROGRAMS = arson

	# which sources should be compiled for arson
	arson_SOURCES = \
	_burnerpager1.ui \
	_burnerpager2.cc \
	_burnerpager3.cpp \
	_burnerpager4.c

	subdir = .
 ...

There are no rules related to _burnerpager1.*, but _burngerpager[2-4].o are
set to be generated through implicit rules (.cc and .cpp both use CXXCOMPILE
and .c uses COMPILE).

-- 
Daniel Reed <n@ml.org>	http://naim-users.org/nmlorg/	http://naim.n.ml.org/
"Real computer scientists like having a computer on their desk, else
how could they read their mail?"



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]