Home | History | Annotate | Line # | Download | only in restore
Makefile revision 1.1
      1  1.1  cgd #	@(#)Makefile	5.10 (Berkeley) 5/11/90
      2  1.1  cgd 
      3  1.1  cgd PROG=	restore
      4  1.1  cgd SRCS=	main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c
      5  1.1  cgd ROBJS=	main.o interactive.o restore.o dirs.o symtab.o rtape.o utilities.o \
      6  1.1  cgd 	dumprmt.o
      7  1.1  cgd MAN8=	restore.0 rrestore.0
      8  1.1  cgd .PATH:	${.CURDIR}/../dump
      9  1.1  cgd CLEANFILES+=dumprmt.o rtape.o rrestore
     10  1.1  cgd 
     11  1.1  cgd all: rrestore
     12  1.1  cgd 
     13  1.1  cgd rrestore: ${ROBJS} ${LIBC}
     14  1.1  cgd 	${CC} ${CFLAGS} -o ${.TARGET} ${ROBJS}
     15  1.1  cgd 
     16  1.1  cgd rtape.o: tape.c ${LIBC}
     17  1.1  cgd 	${CC} ${CFLAGS} -c -DRRESTORE ${.CURDIR}/tape.c -o ${.TARGET}
     18  1.1  cgd 
     19  1.1  cgd afterinstall:
     20  1.1  cgd 	install ${STRIP} -o root -g ${BINGRP} -m 4755 rrestore \
     21  1.1  cgd 	    ${DESTDIR}${BINDIR}
     22  1.1  cgd 
     23  1.1  cgd .include <bsd.prog.mk>
     24