xref: /original-bsd/usr.bin/msgs/Makefile (revision 9087ff44)
1#
2# Copyright (c) 1980 Regents of the University of California.
3# All rights reserved.  The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
6#	@(#)Makefile	5.1 (Berkeley) 06/04/85
7#
8#
9CFLAGS=-O
10SRCS = msgs.c msgs.h Makefile
11msgs: msgs.c msgs.h
12	cc $(CFLAGS) -o msgs msgs.c -ltermlib
13install:
14	install -s msgs ${DESTDIR}/usr/ucb
15clean:
16	-rm -f msgs
17sources: $(SRCS)
18$(SRCS):
19	sccs get $@
20