date and time created 83/08/05 13:34:37 by sam
[unix-history] / usr / src / old / compact / Makefile
CommitLineData
cd47e244 1# Makefile 4.3 83/03/10
fb0aa8d0
BS
2
3CFLAGS=-O
4DESTDIR=
5
6all: compact uncompact
7
8compact: compact.o tree.o
9 cc compact.o tree.o -o compact
10
11uncompact: uncompact.o tree.o
12 cc uncompact.o tree.o -o uncompact
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:
22 rm -f compact.o uncompact.o tree.o