clean up awk syntax
[unix-history] / usr / src / old / implog / Makefile
CommitLineData
19538291
DF
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#
740c7392 5# @(#)Makefile 5.3 (Berkeley) %G%
19538291 6#
20194104 7ALL= implog implogd
6017a464 8DESTDIR=
20194104
SL
9CFLAGS=-O
10
11all: ${ALL}
12
20194104 13implog: implog.o
ce5e9df4 14 ${CC} implog.o -o implog
20194104
SL
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}
740c7392
KM
23 install -s implog ${DESTDIR}/etc
24 install -s implogd ${DESTDIR}/etc