in reply to Perl Command in Makefile Question

If you are Unix, the seq program generates a sequence of numbers. Much faster and simpler to use it instead of Perl.
NumberList := $(shell seq 1 200)

Replies are listed 'Best First'.
Re^2: Perl Command in Makefile Question
by MidLifeXis (Monsignor) on Jul 08, 2004 at 17:13 UTC

    Not sure what version of unix you are on, but HP-UX 11.0 does not have seq, so it is not portable.

    --MidLifeXis