home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / os2 / rcs / rcs56src / source / cvs / man / makefile < prev    next >
Encoding:
Makefile  |  1992-01-14  |  467 b   |  30 lines

  1. #
  2. #    $Id: Makefile,v 1.1 89/11/19 23:17:41 berliner Exp $
  3. #
  4. # Makefile for CVS Manual Pages
  5. #
  6. MANSEC=        l
  7. MANEXT=        .1
  8. MANDIR=        /usr/man/man${MANSEC}
  9. MANSRCS=    cvs${MANEXT} mkmodules${MANEXT} checkin${MANEXT}
  10.  
  11. FILES=        Makefile ${MANSRCS}
  12.  
  13. all:
  14.  
  15. install:
  16.     for i in ${MANSRCS}; do\
  17.         install -m 644 $$i\
  18.             ${MANDIR}/`basename $$i ${MANEXT}`.${MANSEC};\
  19.     done
  20.  
  21. clean:
  22.     rm -f *.o core
  23.  
  24. list:
  25.     @for i in ${FILES}; do\
  26.         echo $$i;\
  27.     done
  28.  
  29. depend:
  30.