Ronaldo Nascimento
Ronaldo Nascimento

Reputation: 1571

Is there a terminal tool to automatically generate autoconf/automake makefiles for a Vala project?

I am trying to create a Vala project to see how i like developing with the language as a possible replacement for Mono. I think that the automake stuff can be used to generate a project template with all the necessary files (sans my .vala code). Any help would be appreciated.

Upvotes: 10

Views: 1063

Answers (4)

Alexander Kojevnikov
Alexander Kojevnikov

Reputation: 17732

There's a sample skeleton Vala project called Sampala. You can clone it and start from there.

Upvotes: 3

elmarco
elmarco

Reputation: 33003

Vala Toys for GEdit includes a tool called vala-gen-project. Give it a try!

Upvotes: 2

Samuel Danielson
Samuel Danielson

Reputation: 5471

Download the source code for the Vala compiler and look at 'configure.ac' and 'Makefile.am' in each subdirectory. Vala itself is the canonical example of how to build a Vala project.

Upvotes: 1

Kredns
Kredns

Reputation: 37211

Automake just recently added support for Vala. To find out more about it check out Automake's notes.

Upvotes: 2

Related Questions