Skip to content
  • Brad King's avatar
    Makefile: Workaround Borland Make bug with multiple outputs · 6c67b816
    Brad King authored
    Given a rule of the form
    
      out1 out2: dep1
      out1 out2: dep2
    
    Borland Make complains that there are multiple rules for "out1"
    even though this works when there is only one output.  Instead
    generate
    
      out1 out2: dep1 dep2
    
    for Borland Make, but only when there are multiple outputs.
    6c67b816