Hi.
I have an old C++ project that I'm modernizing, and part of the process
involves migrating to Autotools.
All source files uses the .cp extension. I know it's not common, but many
compilers recognize it as C++. Automake doesn't do that however.
I guess I could rename all of them to end in som
Forgot the attachment.
# 'simulate' automake environment
jardir = $(datadir)/java
srcdir=../maktest
MKDIR_P=mkdir -p
VPATH=.:$(srcdir)
all: foo.jar
##
## The makefile.am `equivalent' stuff
##
## This user has chosen to make it gnu-make only.
##
jar_JARS=foo.jar
# sources, all relative to '.'
On 2013-05-19 18:57, John Andreasson wrote:
> Hi.
>
> I have an old C++ project that I'm modernizing, and part of the process
> involves migrating to Autotools.
>
> All source files uses the .cp extension. I know it's not common, but many
> compilers recognize it as C++. Automake doesn't do that