home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_06 / 1006083a < prev    next >
Text File  |  1992-04-22  |  129b  |  6 lines

  1. /* an example of a makefile with a recursive dependency */
  2. hello.obj : hello.c proto.h
  3.         cc hello.c
  4.  
  5. proto.h : hello.obj
  6.