1# Copyright (c) 1983 Regents of the University of California. 2# All rights reserved. The Berkeley software License Agreement 3# specifies the terms and conditions for redistribution. 4# 5# @(#)Makefile 5.4 (Berkeley) 05/31/87 6# 7ALL= implog implogd 8DESTDIR= 9CFLAGS=-O 10 11all: ${ALL} 12 13implog: implog.o 14 ${CC} implog.o -o implog 15 16implogd: implogd.o 17 ${CC} implogd.o -o implogd 18 19clean: 20 rm -f ${ALL} *.o *.s errs core a.out t.? 21 22install: ${ALL} 23 install -s implog ${DESTDIR}/etc 24 install -s implogd ${DESTDIR}/etc 25 26depend: 27