Computer Systems Research Group BSD Distribution
Annotation For usr.bin/w/Makefile
Not logged in

Origin for each line in usr.bin/w/Makefile from check-in 47379f41b4:

47379f41b4 1988-10-21        bostic: #
47379f41b4 1988-10-21        bostic: # Copyright (c) 1988 Regents of the University of California.
47379f41b4 1988-10-21        bostic: # All rights reserved.
47379f41b4 1988-10-21        bostic: #
47379f41b4 1988-10-21        bostic: # Redistribution and use in source and binary forms are permitted
47379f41b4 1988-10-21        bostic: # provided that the above copyright notice and this paragraph are
47379f41b4 1988-10-21        bostic: # duplicated in all such forms and that any documentation, advertising
47379f41b4 1988-10-21        bostic: # materials, and other materials related to such redistribution and
47379f41b4 1988-10-21        bostic: # use acknowledge that the software was developed by the University
47379f41b4 1988-10-21        bostic: # of California, Berkeley.  The name of the University may not be
47379f41b4 1988-10-21        bostic: # used to endorse or promote products derived from this software
47379f41b4 1988-10-21        bostic: # without specific prior written permission.  THIS SOFTWARE IS PROVIDED
47379f41b4 1988-10-21        bostic: # ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
47379f41b4 1988-10-21        bostic: # WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND
47379f41b4 1988-10-21        bostic: # FITNESS FOR A PARTICULAR PURPOSE.
47379f41b4 1988-10-21        bostic: #
47379f41b4 1988-10-21        bostic: # @(#)Makefile	5.1 (Berkeley) 10/21/88
47379f41b4 1988-10-21        bostic: #
47379f41b4 1988-10-21        bostic: 
47379f41b4 1988-10-21        bostic: CFLAGS=	-O
47379f41b4 1988-10-21        bostic: LIBC=	/lib/libc.a
47379f41b4 1988-10-21        bostic: SRCS=	w.c
47379f41b4 1988-10-21        bostic: OBJS=
47379f41b4 1988-10-21        bostic: MAN=	w.0 uptime.0
47379f41b4 1988-10-21        bostic: 
47379f41b4 1988-10-21        bostic: all: w
47379f41b4 1988-10-21        bostic: 
47379f41b4 1988-10-21        bostic: w: ${LIBC}
47379f41b4 1988-10-21        bostic: 	${CC} -o $@ ${CFLAGS} $@.c
47379f41b4 1988-10-21        bostic: 
47379f41b4 1988-10-21        bostic: clean:
47379f41b4 1988-10-21        bostic: 	rm -f ${OBJS} core w
47379f41b4 1988-10-21        bostic: 
47379f41b4 1988-10-21        bostic: cleandir: clean
47379f41b4 1988-10-21        bostic: 	rm -f ${MAN} tags .depend
47379f41b4 1988-10-21        bostic: 
47379f41b4 1988-10-21        bostic: depend: ${SRCS}
47379f41b4 1988-10-21        bostic: 	mkdep -p ${CFLAGS} ${SRCS}
47379f41b4 1988-10-21        bostic: 
47379f41b4 1988-10-21        bostic: install: ${MAN}
47379f41b4 1988-10-21        bostic: 	install -s -o bin -g kmem -m 2755 w ${DESTDIR}/usr/ucb/w
47379f41b4 1988-10-21        bostic: 	rm -f ${DESTDIR}/usr/ucb/uptime
47379f41b4 1988-10-21        bostic: 	ln ${DESTDIR}/usr/ucb/w ${DESTDIR}/usr/ucb/uptime
47379f41b4 1988-10-21        bostic: 	install -c -o bin -g bin -m 444 ${MAN} ${DESTDIR}/usr/man/cat1
47379f41b4 1988-10-21        bostic: 
47379f41b4 1988-10-21        bostic: lint: ${SRCS}
47379f41b4 1988-10-21        bostic: 	lint ${CFLAGS} ${SRCS}
47379f41b4 1988-10-21        bostic: 
47379f41b4 1988-10-21        bostic: tags: ${SRCS}
47379f41b4 1988-10-21        bostic: 	ctags ${SRCS}