#!/bin/make -f
# @(#)conf/lib/Makefile	1.3 02 Dec 1990 03:50:09
# Makefile for the smail configuration utilities directory
#
#    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=../..
LIBSRC=arch.h checkdefs.sh inst.sh instm.sh mkdefs.sh mkdepend.sh mkdirs.sh \
       mkversion.sh
MISCSRC=Makefile
SRC=${LIBSRC} ${MISCSRC}

all install depend clean clobber:

sources: ${SRC}

${SRC}:
	${GET} $@

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

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