xref: /original-bsd/usr.bin/uucp/libacu/Makefile (revision 81f57ac7)
1#
2# Copyright (c) 1987 The Regents of the University of California.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms are permitted
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.
16#
17#	@(#)Makefile	4.11 (Berkeley) 10/24/88
18#
19CFLAGS=	-O
20LIBC=	/lib/libc.a
21SRCS=	bsdtcp.c df2.c df12.c dk.c dn.c hys.c hysq.c mic.c nov.c pen.c pnet.c \
22	rvmacs.c sy.c unet.c va212.c va811.c va820.c vad.c vent.c vmacs.c \
23	hys24.c cds224.c att2224.c
24OBJS=	bsdtcp.o df2.o df12.o dk.o dn.o hys.o hysq.o mic.o nov.o pen.o pnet.o \
25	rvmacs.o sy.o unet.o va212.o va811.o va820.o vad.o vent.o vmacs.o \
26	hys24.o cds224.o att2224.o
27P=
28
29all: aculib.a
30
31aculib.a: $(P) ${OBJS}
32	ar cr aculib.a ${OBJS}
33	-ranlib aculib.a 2>&1 | sed '/no symbol table/d'
34
35clean:
36	rm -f ${OBJS} core aculib.a
37
38cleandir: clean
39	rm -f ${MAN} tags .depend
40
41depend: ${SRCS}
42	mkdep ${CFLAGS} ${SRCS}
43
44lint: ${SRCS}
45	lint ${CFLAGS} ${SRCS}
46
47tags: ${SRCS}
48	ctags ${SRCS}
49
50install:
51