Mail Archives: djgpp/1997/11/05/05:21:44
On Tue, 4 Nov 1997, Jose Luis Perandones Colino wrote:
> >Btw, I don't understand how that original line was supposed to work at
> >all, since DEL only accepts a single argument, at least in
> >COMMAND.COM.
> >
> 4DOS del suport multiple files as arguments.
If so, then try this:
clean:
echo del $(OBJS) > foo.btm
4dos.com /c foo.btm
del foo.btm
Btw, it's usually a bad idea to write Makefiles which only work with a
certain shell, but fail with others.
- Raw text -