home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / sbin / dump / Makefile < prev    next >
Encoding:
Makefile  |  1992-07-19  |  635 b   |  26 lines

  1. #    @(#)Makefile    5.16 (Berkeley) 7/15/92
  2.  
  3. #    dump.h            header file
  4. #    itime.c            reads /etc/dumpdates
  5. #    main.c            driver
  6. #    optr.c            operator interface
  7. #    dumprmt.c        handles remote tape via rmt(8)
  8. #    tape.c            handles the mag tape and opening/closing
  9. #    traverse.c        traverses the file system
  10. #    unctime.c        undo ctime
  11. #
  12. #    DEBUG            use local directory to find ddate and dumpdates
  13. #    TDEBUG            trace out the process forking
  14.  
  15. PROG=    dump
  16. LINKS=    ${BINDIR}/dump ${BINDIR}/rdump
  17. CFLAGS+=-DRDUMP
  18. SRCS=    itime.c main.c optr.c dumprmt.c tape.c traverse.c unctime.c
  19. BINOWN=    root
  20. BINGRP=    tty
  21. BINMODE=6555
  22. MAN8=    dump.0
  23. MLINKS+=dump.8 rdump.8
  24.  
  25. .include <bsd.prog.mk>
  26.