BSD 3 development
[unix-history] / usr / src / cmd / grep / makefile
CommitLineData
eeea78d6
BJ
1CFLAGS=-O
2all: btlgrep ucbgrep
3
4btlgrep: btlgrep.o
5 cc btlgrep.o -o btlgrep
6
7ucbgrep: ucbgrep.o
8 cc ucbgrep.o -o ucbgrep
9
10install: btlgrep ucbgrep
11 strip btlgrep ucbgrep
12 mv btlgrep ${DESTDIR}/bin/grep
13 mv ucbgrep ${DESTDIR}/usr/ucb/grep
14
15clean:
16 rm -f *.o btlgrep ucbgrep