[Glade-users] practical question: apps locating glade file

Ivan Wong email@ivanwong.info
Sat, 11 Dec 2004 10:26:44 +0800


> Well, what about users who do a make and want to run the app prior to
> make install. Isn't that the whole point of this option?
Have you looked at my src/Makefile.am and src/test-galeon, they allow 
the users to run the app prior to `make install` by `make check`?

/* begin - src/Makefile.am */

...
...
TESTS = test-galeon
...
...

/* end - src/Makefile.am */


/* begin src/test-galeon */

#!/bin/sh

galeon --gladedir="$srcdir/../ui"

/* end src/test-galeon */


Cheers,
Ivan Wong.