#!/bin/make -f
# @(#)design/Makefile	1.3 02 Dec 1990 03:51:13
# Makefile for the smail design documentation
#
#    Copyright (C) 1987, 1988 Ronald S. Karr and Landon Curt Noll
# 
# See the file COPYING, distributed with smail, for restriction
# and warranty information.

SHELL=/bin/sh
MAKE=make
GET=sccs get
AR=ar
LINT=lint
CLEAN=sccs clean
MK=${MAKE} -${MAKEFLAGS}
SRC_PREFIX=

ROOT=..
DESIGN=abstract toc part.0 part.1 part.2 part.3 part.4 part.5 \
       part.6 part.7 part.8 part.9 part.a part.b \
       part.n-2+0 part.n-2+1 part.n-2+2
MISC=Makefile
SRC=${DESIGN} ${MISC}
CAT=cat
PR=pr

all:

sources: ${SRC}

${SRC}:
	${GET} $@

names:
	@for i in ${SRC}; do echo ${SRC_PREFIX}$$i; done

cat:	${DESIGN}
	@${CAT} ${DESIGN}

pr:	${DESIGN}
	@${PR} ${DESIGN}

install depend clean clobber:

nuke: clobber
	-${CLEAN}
	-${GET} Makefile
