# # Public Domain. 1996/11/16 - Steven Schultz # # @(#)Makefile 1.0 (2.11BSD) 1996/11/16 # CFLAGS= -O SEPFLAG= -i SRCS= restor.c OBJS= restor.o MAN= restor.0 MANSRC= restor.8 all: restor restor.0 restor: ${OBJS} ${CC} ${CFLAGS} ${SEPFLAG} -o $@ ${OBJS} restor.0: ${MANSRC} /usr/man/manroff ${MANSRC} > ${MAN} clean: rm -f ${OBJS} ${MAN} restor tags depend: ${SRCS} mkdep ${CFLAGS} ${SRCS} install: restor install -c -o bin -g bin -m 444 ${MAN} ${DESTDIR}/usr/man/cat8 install -s -o root -g bin -m 755 restor ${DESTDIR}/sbin/restor lint: ${SRCS} lint -hax ${SRCS} tags: ${SRCS} ctags ${SRCS} # DO NOT DELETE THIS LINE -- mkdep uses it. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.