new yacc has different yyfix command
[unix-history] / usr / src / old / cpio / Makefile
CommitLineData
0da439bd 1#
cc036353 2# Copyright (c) 1988 Regents of the University of California.
0da439bd
KB
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms are permitted
57a981eb
KB
6# provided that the above copyright notice and this paragraph are
7# duplicated in all such forms and that any documentation,
8# advertising materials, and other materials related to such
9# distribution and use acknowledge that the software was developed
10# by the University of California, Berkeley. The name of the
11# University may not be used to endorse or promote products derived
12# from this software without specific prior written permission.
13# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
0da439bd 16#
b780a1e4 17# @(#)Makefile 5.6 (Berkeley) %G%
0da439bd
KB
18#
19CFLAGS= -O
20LIBC= /lib/libc.a
21SRCS= cpio.c
22OBJS=
cc036353
KB
23MAN= cpio.0 cpio_format.0
24
0da439bd
KB
25all: cpio
26
27cpio: ${LIBC}
b780a1e4 28 ${CC} -o $@ ${CFLAGS} cpio.c -lcompat
0da439bd 29
68ff54ce
KB
30clean:
31 rm -f ${OBJS} core cpio
0da439bd 32
68ff54ce
KB
33cleandir: clean
34 rm -f ${MAN} tags .depend
35
36depend: ${SRCS}
0da439bd
KB
37 mkdep -p ${CFLAGS} ${SRCS}
38
68ff54ce 39install: ${MAN}
435e8dff
KB
40 install -s -o bin -g bin -m 755 cpio ${DESTDIR}/usr/bin
41 install -c -o bin -g bin -m 444 cpio.0 ${DESTDIR}/usr/man/cat1
42 install -c -o bin -g bin -m 444 cpio_format.0 ${DESTDIR}/usr/man/cat5
0da439bd 43
68ff54ce 44lint: ${SRCS}
0da439bd
KB
45 lint ${CFLAGS} ${SRCS}
46
68ff54ce 47tags: ${SRCS}
0da439bd 48 ctags ${SRCS}