trunk/src/build/makemak.c
| r23765 | r23766 | |
| 483 | 483 | printf("\t%s \\\n", t.cstr()); |
| 484 | 484 | } |
| 485 | 485 | } |
| 486 | | /* |
| 486 | |
| 487 | 487 | printf("\n"); |
| 488 | 488 | printf("\n"); |
| 489 | 489 | for (dependency_map::entry_t *entry = depend_map.first(); entry != NULL; entry = depend_map.next(entry)) |
| 490 | 490 | { |
| 491 | 491 | astring t(entry->tag()); |
| 492 | | if (core_filename_ends_with(t, ".h")) |
| 492 | if (core_filename_ends_with(t, ".lay")) |
| 493 | 493 | { |
| 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()); |
| 495 | 502 | } |
| 496 | | }*/ |
| 503 | } |
| 497 | 504 | } |
| 498 | 505 | } |
| 499 | 506 | } |