make-w32
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: converting makefile from borland


From: David Baird
Subject: RE: converting makefile from borland
Date: Tue, 10 Aug 2004 10:39:17 +0300

> $(PROJECT):  $(OTHERFILES) $(IDLGENFILES) $(OBJFILES) 
> $(RESDEPEN) $(DEFFILE)
>     $(LINKER) /u $@ @&&!
>     $(LFLAGS) $? $(COMMA) $(LISTFILE)

The &&! directive in Borland Make will create a temporary file with the
next lines as contents. So, perhaps the following would work:

    echo $(LFLAGS) $? $(COMMA) $(LISTFILE) > tempfile
    $(LINKER) /u $@ @tempfile
    del tempfile

You might also get away with this:

    $(LINKER) /u $@ $(LFLAGS) $? $(COMMA) $(LISTFILE) 
    





reply via email to

[Prev in Thread] Current Thread [Next in Thread]