home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / os2 / rcs / rcs56src / source / cvs / examples / makefile < prev    next >
Encoding:
Makefile  |  1991-02-06  |  301 b   |  23 lines

  1. #
  2. #    $Id: Makefile,v 1.1 89/11/19 23:17:17 berliner Exp $
  3. #
  4. # Makefile for CVS sample files that reside in the $CVSROOT/CVSROOT.adm
  5. # directory
  6. #
  7.  
  8. FILES=        Makefile loginfo modules
  9.  
  10. all:
  11.  
  12. install:
  13.  
  14. clean:
  15.     rm -f *.o core
  16.  
  17. list:
  18.     @for i in ${FILES}; do\
  19.         echo $$i;\
  20.     done
  21.  
  22. depend:
  23.