Fix $(BUILD) -> $(BUILD_DIR) in k_model_utils.c rule.
authorW. Trevor King <wking@tremily.us>
Thu, 28 Jun 2012 11:48:17 +0000 (07:48 -0400)
committerW. Trevor King <wking@tremily.us>
Thu, 28 Jun 2012 11:48:17 +0000 (07:48 -0400)
commitf72ca66576375516d6705af60a1e72596c2ec73b
treef5d03a6b015c9df5840e7d823feda3573d19f511
parent8d0a1fc2414b7f988532691a309248e63512352c
Fix $(BUILD) -> $(BUILD_DIR) in k_model_utils.c rule.

BUILD isn't defined, and the old way gave errors like:

  $ make -j17 all_bin
  mkdir build
  notangle -Rk-model-utils.c src/sawsim.nw > build/k_model_utils.c
  /bin/sh: cannot create build/k_model_utils.c: Directory nonexistent
  make: *** [build/k_model_utils.c] Error 2
  make: *** Waiting for unfinished jobs....

You'd only have seen this error with parallel builds, otherwise
BUILD_DIR would have already have been created as a dependency of
another file by the time k_model_utils.c needed it.
src/sawsim.nw