Adam R. B. Jack wrote:

How do folks build C primarily? Use CC in Ant? Use of make?

Basically Gump wants to run a set of builders (script or ant or whatever)
that generate artifacts. It'll string those artifacts together (e.g. in a
CLASSPATH or as properties to Maven) and pass those in to subsequent
builders. How would we achieve this for these C programs?

In the case of a build of APR, it's as simple as running three scripts back to back:

./configure
make
make install

Then the fun starts. APR-util depends on APR, so the results of "make install" above need to be made available to APR-util, and then both to httpd, rinse, repeat.

The RPM build is similar, you just replace the scripts above with:

rpmbuild -tb apr-x.x.x.tar.gz.

So in short: gump needs to be able to run one or more scripts.

Regards,
Graham
--

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature



Reply via email to