Next: , Previous: , Up: The Macros  


ax_extra_dist

Synopsis

AX_EXTRA_DIST

Description

Allow support for custom dist targets.

To add custom dist targets, you must create a dist-<TYPE> target within your Makefile.am, where <TYPE> is the name of the dist and then add <TYPE> to EXTRA_SRC_DISTS or EXTRA_BIN_DISTS. For example:

  dist-foobar:
   <rules for making the foobar dist>
  EXTRA_BIN_DISTS += foobar

You can then build all the src dist targets by running:

  make dist-src

You can build all the binary dist targets by running:

  make dist-bin

and you can build both the src and dist targets by running:

  make all-dist

Source Code

Download the latest version of ax_extra_dist.m4 or browse the macro’s revision history.

License

Copyright © 2009 Tom Howard tomhoward@users.sf.net

Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty.