Click to See Complete Forum and Search --> : Just finished ny first GTK program - wot next?


greadey
03-23-2003, 06:10 PM
Hi peeps,

I've just written my first GTK program with Glade and now I want to take ot to work.

Can anyone point me in the direction of how to bundle what I need to bundle into a distributon or will it be sufficient to take the executable?

On the other hand do I do a make clean in the src dir and tar.gz the whole project dir then do a ./configure; make;make install on the target machine?

thanks,

greadey

viperlin
03-23-2003, 06:50 PM
Just finished ny first GTK program - wot next?

spell check it ;)

bwkaz
03-23-2003, 09:04 PM
First, double-check what I say against the Glade documentation. I've never used Glade, so I don't know for sure.

Originally posted by greadey
On the other hand do I do a make clean in the src dir and tar.gz the whole project dir then do a ./configure; make;make install on the target machine? Probably. But as I said, double-check what I say against reality aka the Glade docs. ;)

If you run a make distclean (that is, clean enough to distribute), then you should be left with a configure script, and a bunch of *.in files (Makefile.in, config.h.in, etc.). The Makefile, config.h, etc. will get regenerated when you rerun config.status, which is generated and then run as a part of ./configure.

But all this is predicated on your project using the GNU autotools to begin with, so if it doesn't, you'll have to figure something else out.

megadave
03-24-2003, 02:54 AM
no screen shot?