add declaration on n to be an integer
[unix-history] / usr / src / old / compact / Makefile
CommitLineData
fcac8563 1# Makefile 4.5 84/08/26
fb0aa8d0
BS
2
3CFLAGS=-O
4DESTDIR=
5
6all: compact uncompact
7
8compact: compact.o tree.o
3e76178c 9 ${CC} ${LDFLAGS} compact.o tree.o -o compact
fb0aa8d0
BS
10
11uncompact: uncompact.o tree.o
3e76178c 12 ${CC} ${LDFLAGS} uncompact.o tree.o -o uncompact
fb0aa8d0 13
dc2aa3c2
BS
14compact.o uncompact.o tree.o: compact.h
15
fb0aa8d0
BS
16install:
17 install -s compact ${DESTDIR}/usr/ucb
18 install -s uncompact ${DESTDIR}/usr/ucb
cd47e244 19 install -c -m 755 ccat.sh ${DESTDIR}/usr/ucb/ccat
fb0aa8d0
BS
20
21clean:
fcac8563 22 rm -f compact uncompact compact.o uncompact.o tree.o