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    1: #
47379f41b4 1988-10-21    2: # Copyright (c) 1988 Regents of the University of California.
47379f41b4 1988-10-21    3: # All rights reserved.
47379f41b4 1988-10-21    4: #
47379f41b4 1988-10-21    5: # Redistribution and use in source and binary forms are permitted
47379f41b4 1988-10-21    6: # provided that the above copyright notice and this paragraph are
47379f41b4 1988-10-21    7: # duplicated in all such forms and that any documentation, advertising
47379f41b4 1988-10-21    8: # materials, and other materials related to such redistribution and
47379f41b4 1988-10-21    9: # use acknowledge that the software was developed by the University
47379f41b4 1988-10-21   10: # of California, Berkeley.  The name of the University may not be
47379f41b4 1988-10-21   11: # used to endorse or promote products derived from this software
47379f41b4 1988-10-21   12: # without specific prior written permission.  THIS SOFTWARE IS PROVIDED
47379f41b4 1988-10-21   13: # ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
47379f41b4 1988-10-21   14: # WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND
47379f41b4 1988-10-21   15: # FITNESS FOR A PARTICULAR PURPOSE.
47379f41b4 1988-10-21   16: #
47379f41b4 1988-10-21   17: # @(#)Makefile	5.1 (Berkeley) 10/21/88
47379f41b4 1988-10-21   18: #
47379f41b4 1988-10-21   19: 
47379f41b4 1988-10-21   20: CFLAGS=	-O
47379f41b4 1988-10-21   21: LIBC=	/lib/libc.a
47379f41b4 1988-10-21   22: SRCS=	w.c
47379f41b4 1988-10-21   23: OBJS=
47379f41b4 1988-10-21   24: MAN=	w.0 uptime.0
47379f41b4 1988-10-21   25: 
47379f41b4 1988-10-21   26: all: w
47379f41b4 1988-10-21   27: 
47379f41b4 1988-10-21   28: w: ${LIBC}
47379f41b4 1988-10-21   29: 	${CC} -o $@ ${CFLAGS} $@.c
47379f41b4 1988-10-21   30: 
47379f41b4 1988-10-21   31: clean:
47379f41b4 1988-10-21   32: 	rm -f ${OBJS} core w
47379f41b4 1988-10-21   33: 
47379f41b4 1988-10-21   34: cleandir: clean
47379f41b4 1988-10-21   35: 	rm -f ${MAN} tags .depend
47379f41b4 1988-10-21   36: 
47379f41b4 1988-10-21   37: depend: ${SRCS}
47379f41b4 1988-10-21   38: 	mkdep -p ${CFLAGS} ${SRCS}
47379f41b4 1988-10-21   39: 
47379f41b4 1988-10-21   40: install: ${MAN}
47379f41b4 1988-10-21   41: 	install -s -o bin -g kmem -m 2755 w ${DESTDIR}/usr/ucb/w
47379f41b4 1988-10-21   42: 	rm -f ${DESTDIR}/usr/ucb/uptime
47379f41b4 1988-10-21   43: 	ln ${DESTDIR}/usr/ucb/w ${DESTDIR}/usr/ucb/uptime
47379f41b4 1988-10-21   44: 	install -c -o bin -g bin -m 444 ${MAN} ${DESTDIR}/usr/man/cat1
47379f41b4 1988-10-21   45: 
47379f41b4 1988-10-21   46: lint: ${SRCS}
47379f41b4 1988-10-21   47: 	lint ${CFLAGS} ${SRCS}
47379f41b4 1988-10-21   48: 
47379f41b4 1988-10-21   49: tags: ${SRCS}
47379f41b4 1988-10-21   50: 	ctags ${SRCS}