[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: comment sources
From: |
Daniel Reed |
Subject: |
Re: comment sources |
Date: |
Mon, 15 Dec 2003 10:07:55 -0500 (EST) |
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 <address@hidden> 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?"
- comment sources, Bob Lockie, 2003/12/15
- Re: comment sources,
Daniel Reed <=