Previous 199869 Revisions Next

r23766 Tuesday 18th June, 2013 at 08:39:22 UTC by Miodrag Milanović
added layout dependancy (nw)
[src/build]makemak.c

trunk/src/build/makemak.c
r23765r23766
483483                        printf("\t%s \\\n", t.cstr());
484484                     }
485485                  }
486                  /*
486                 
487487                  printf("\n");
488488                  printf("\n");
489489                  for (dependency_map::entry_t *entry = depend_map.first(); entry != NULL; entry = depend_map.next(entry))
490490                  {
491491                     astring t(entry->tag());
492                     if (core_filename_ends_with(t, ".h"))
492                     if (core_filename_ends_with(t, ".lay"))
493493                     {
494                        printf("\t%s\n", t.cstr());
494                        astring target2(file.name);
495                        target2.replace(0, "src/", "$(OBJ)/");
496                        target2.replace(0, ".c", ".o");
497
498                        t.replace(0, "src/", "$(OBJ)/");
499                        t.replace(0, ".lay", ".lh");
500                       
501                        printf("%s:   %s\n", target2.cstr(), t.cstr());
495502                     }
496                  }*/
503                  }
497504               }
498505            }
499506         }

Previous 199869 Revisions Next


© 1997-2024 The MAME Team