[Vala] Automake configuration for library other than one from the tutorial?

2015-12-08 Thread mar...@saepia.net
Hello, I want to develop a library with Vala. Can you please recommend any other automake sample configurations than mentioned in the tutorial? The one from tutorial is definitely not a "hello world" and while I am quite proficient with Vala etc. automake concepts still seem to be quite obscure f

Re: [Vala] Automake configuration for library other than one from the tutorial?

2015-12-08 Thread Luca Dionisi
Following is my recipe for an app. Enter a fresh new directory. $ mkdir m4 $ touch README NEWS AUTHORS ChangeLog Create following (attached) files: configure.ac Makefile.am main.vala Save all in VCS of your choice. $ autoreconf --install Add COPYING and

Re: [Vala] Automake configuration for library other than one from the tutorial?

2015-12-08 Thread Luca Dionisi
Following is my recipe for a lib. Enter a fresh new directory. $ mkdir m4 $ touch README NEWS AUTHORS ChangeLog Create following (attached) files: configure.ac Makefile.am libtest.vala mylibrary.pc.in mylibrary.deps Save all in VCS of your choice. $ aut

Re: [Vala] Automake configuration for library other than one from the tutorial?

2015-12-08 Thread mar...@saepia.net
Thank you! M. 8 gru 2015 4:40 PM "Luca Dionisi" napisaƂ(a): > Following is my recipe for a lib. > > Enter a fresh new directory. > > $ mkdir m4 > $ touch README NEWS AUTHORS ChangeLog > > Create following (attached) files: > configure.ac > Makefile.am > li