home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 581b.lha / genmake_v1.03 / print_deps.c < prev    next >
C/C++ Source or Header  |  1991-11-07  |  351b  |  17 lines

  1. #include <stdio.h>
  2. #include "types.h"
  3.  
  4. print_deps(make_list)
  5. DNODE        **make_list;
  6. {
  7.     DNODE        *dcur;
  8.     FNODE        *fcur;
  9.  
  10.     for (dcur = *make_list; dcur != NULL; dcur = dcur->next) {
  11.         printf("\nThese files:\n");
  12.         for (fcur = dcur->dlist; fcur != NULL; fcur = fcur->next)
  13.             printf("\t%s\n",fcur->name);
  14.         printf("Depend on this file: %s\n",dcur->name);
  15.     }
  16. }
  17.