Quoting Colin Watson <[EMAIL PROTECTED]> (2003-09-09 00:50:24 BST):
> On Mon, Sep 08, 2003 at 07:22:02PM -0400, Neil Roeth wrote:
> > I recently read about target-specific variables in make, so I thought I
> > could
> > do this:
> >
> > pkg1-stamp: pkg1
> > pkg2-stamp: pkg2
> >
> > %-stamp: $(@:
Quoting Colin Watson <[EMAIL PROTECTED]> (2003-09-09 00:50:24 BST):
> On Mon, Sep 08, 2003 at 07:22:02PM -0400, Neil Roeth wrote:
> > I recently read about target-specific variables in make, so I thought I could
> > do this:
> >
> > pkg1-stamp: pkg1
> > pkg2-stamp: pkg2
> >
> > %-stamp: $(@:%-sta
On Sep 9, Colin Watson ([EMAIL PROTECTED]) wrote:
> On Mon, Sep 08, 2003 at 07:22:02PM -0400, Neil Roeth wrote:
> > I recently read about target-specific variables in make, so I thought I
> > could
> > do this:
> >
> > pkg1-stamp: pkg1
> > pkg2-stamp: pkg2
> >
> > %-stamp: $(@:%-stamp=
On Sep 9, Colin Watson ([EMAIL PROTECTED]) wrote:
> On Mon, Sep 08, 2003 at 07:22:02PM -0400, Neil Roeth wrote:
> > I recently read about target-specific variables in make, so I thought I could
> > do this:
> >
> > pkg1-stamp: pkg1
> > pkg2-stamp: pkg2
> >
> > %-stamp: $(@:%-stamp=%)
>
On Mon, Sep 08, 2003 at 07:22:02PM -0400, Neil Roeth wrote:
> I recently read about target-specific variables in make, so I thought I could
> do this:
>
> pkg1-stamp: pkg1
> pkg2-stamp: pkg2
>
> %-stamp: $(@:%-stamp=%)
> touch $@
>
> pkg1: DH_OPTIONS=-p$@
> ...
> dh_install
>
I have a source package that creates multiple binary packages, each of which
requires a different sequence of debhelper programs. To avoid having to
specify the -p option for each command, I do this:
pkg1-stamp: pkg1
pkg2-stamp: pkg2
%-stamp:
$(MAKE) -f debian/rules DH_OPTIONS=-p$(@:%-st
On Mon, Sep 08, 2003 at 07:22:02PM -0400, Neil Roeth wrote:
> I recently read about target-specific variables in make, so I thought I could
> do this:
>
> pkg1-stamp: pkg1
> pkg2-stamp: pkg2
>
> %-stamp: $(@:%-stamp=%)
> touch $@
>
> pkg1: DH_OPTIONS=-p$@
> ...
> dh_install
>
I have a source package that creates multiple binary packages, each of which
requires a different sequence of debhelper programs. To avoid having to
specify the -p option for each command, I do this:
pkg1-stamp: pkg1
pkg2-stamp: pkg2
%-stamp:
$(MAKE) -f debian/rules DH_OPTIONS=-p$(@:%-st
8 matches
Mail list logo