Fix order of 2nd and 3rd arguments to fread so the count of the
[unix-history] / usr / src / usr.bin / indent / Makefile
CommitLineData
9321e15b 1# @(#)Makefile 4.2 (Berkeley) %G%
d245028d
KM
2#
3DESTDIR=
4CFLAGS= -O
5OBJS= indent.o io.o lexi.o parse.o pr_comment.o
6
7indent: indent.o io.o lexi.o parse.o pr_comment.o
8 cc -o indent ${OBJS}
9
10clean:
11 rm -f ${OBJS} indent
12
13install:
9321e15b 14 install -s indent ${DESTDIR}/usr/ucb/indent