02-14-06 10:54 PM
gmake -v
GNU Make version 3.79.1, by Richard Stallman and Roland McGrath.
Built for hppa2.0n-hp-hpux11.00
Copyright (C) 1988, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
I have:
projects := ldb lde ldg ldm ldf ldw lbf
all : $(projects)
$(projects) :
<commands>
$(substr ldb,,$(projects)) : ldb
I need to set the other 6 to be dependent on ldb finishing. The
example I found shows this to work, but it doesn't
[ Post a follow-up to this message ]
|