make output line buffered if selecting only some of the entries
[unix-history] / usr / src / usr.bin / talk / Makefile
index 7fbfd5b..fce1391 100644 (file)
@@ -1,41 +1,49 @@
 #
 #
-# Copyright (c) 1983 Regents of the University of California.
-# All rights reserved.  The Berkeley software License Agreement
-# specifies the terms and conditions for redistribution.
+# Copyright (c) 1987 Regents of the University of California.
+# All rights reserved.
 #
 #
-#      @(#)Makefile    5.1 (Berkeley) %G%
+# Redistribution and use in source and binary forms are permitted
+# provided that the above copyright notice and this paragraph are
+# duplicated in all such forms and that any documentation,
+# advertising materials, and other materials related to such
+# distribution and use acknowledge that the software was developed
+# by the University of California, Berkeley.  The name of the
+# University may not be used to endorse or promote products derived
+# from this software without specific prior written permission.
+# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
+# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 #
 #
-DESTDIR=
-DOBJECT=talkd.o announce.o process.o table.o print.o
-TOBJECT=talk.o get_names.o display.o io.o ctl.o init_disp.o \
-       msgs.o get_addrs.o ctl_transact.o invite.o look_up.o
-DSOURCE=talkd.c announce.c process.c table.c print.c
-TSOURCE=talk.c get_names.c display.c io.c ctl.c init_disp.c \
+#      @(#)Makefile    5.11 (Berkeley) %G%
+#
+CFLAGS=        -O
+LIBC=  /lib/libc.a
+SRCS=  talk.c get_names.c display.c io.c ctl.c init_disp.c \
        msgs.c get_addrs.c ctl_transact.c invite.c look_up.c
        msgs.c get_addrs.c ctl_transact.c invite.c look_up.c
-INCLUDE=talk.h ctl.h talk_ctl.h
-SOURCE= ${DSOURCE} ${TSOURCE}
-CFLAGS= -O
+OBJS=  talk.o get_names.o display.o io.o ctl.o init_disp.o \
+       msgs.o get_addrs.o ctl_transact.o invite.o look_up.o
+MAN=   talk.0
 
 
-all:   talk talkd
+all: talk
 
 
-talkd: ${DOBJECT}
-       cc ${CFLAGS} -o talkd ${DOBJECT}
+talk: ${OBJS} ${LIBC}
+       ${CC} -o $@ ${CFLAGS} ${OBJS} -lcurses -ltermlib -lcompat
 
 
-talk:  ${TOBJECT}
-       cc -o talk ${TOBJECT} -lcurses -ltermlib
+clean:
+       rm -f ${OBJS} core talk
 
 
-${DOBJECT}: ctl.h
-${TOBJECT}: talk.h ctl.h talk_ctl.h
+cleandir: clean
+       rm -f ${MAN} tags .depend
 
 
-install: talk talkd
-       install -s talk ${DESTDIR}/usr/ucb/talk
-       install -s talkd ${DESTDIR}/etc/talkd
+depend: ${SRCS}
+       mkdep ${CFLAGS} ${SRCS}
 
 
-lint:
-       lint ${DSOURCE}
+install: ${MAN}
+       install -s -o bin -g bin -m 755 talk ${DESTDIR}/usr/bin
+       install -c -o bin -g bin -m 444 talk.0 ${DESTDIR}/usr/man/cat1
 
 
-clean:
-       rm -f *.o talk talkd
+lint: ${SRCS}
+       lint ${CFLAGS} ${SRCS}
 
 
-tags:  ${SOURCE} ${INCLUDE}
-       ctags ${SOURCE} ${INCLUDE}
+tags: ${SRCS}
+       ctags ${SRCS}