Hi, if you're a C programmer, then you use make with decent sized projects, I assume? If so, keep all your little source scaps in files with a particular suffix and then use make...
SUFFIX = ".pl.bit"
TARGET = "myprog.pl"
all:
@cat *${SUFFIX} >> ${TARGET }
That will work fine, but modules are better...
R
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
