cleanup, add manual page
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Sat, 22 Oct 1988 07:54:39 +0000 (23:54 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Sat, 22 Oct 1988 07:54:39 +0000 (23:54 -0800)
SCCS-vsn: usr.bin/passwd/Makefile 5.3

usr/src/usr.bin/passwd/Makefile

index dc57b21..0ae2183 100644 (file)
@@ -1,45 +1,53 @@
 #
 #
-# Copyright (c) 1987 Regents of the University of California.
-# All rights reserved.  The Berkeley software License Agreement
-# specifies the terms and conditions for redistribution.
+# Copyright (c) 1988 The Regents of the University of California.
+# All rights reserved.
 #
 #
-#      @(#)Makefile    5.2     (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.
+#
+#      @(#)Makefile    5.3 (Berkeley) %G%
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
 SRCS=  passwd.c
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
 SRCS=  passwd.c
+OBJS=
+MAN=   passwd.0
 
 all: passwd
 
 passwd: ${LIBC}
 
 all: passwd
 
 passwd: ${LIBC}
-       ${CC} -o $@ ${CFLAGS} ${SRCS}
+       ${CC} ${CFLAGS} -o $@ $@.c
+
+clean:
+       rm -f ${OBJS} core passwd
 
 
-clean: FRC
-       rm -f core passwd
+cleandir: clean
+       rm -f ${MAN} tags .depend
 
 
-depend: FRC
+depend: ${SRCS}
        mkdep -p ${CFLAGS} ${SRCS}
 
        mkdep -p ${CFLAGS} ${SRCS}
 
-install: FRC
+install: ${MAN}
        install -s -o root -g bin -m 4755 passwd ${DESTDIR}/bin/passwd
        rm -f ${DESTDIR}/bin/chfn; ln ${DESTDIR}/bin/passwd ${DESTDIR}/bin/chfn
        rm -f ${DESTDIR}/bin/chsh; ln ${DESTDIR}/bin/passwd ${DESTDIR}/bin/chsh
        install -s -o root -g bin -m 4755 passwd ${DESTDIR}/bin/passwd
        rm -f ${DESTDIR}/bin/chfn; ln ${DESTDIR}/bin/passwd ${DESTDIR}/bin/chfn
        rm -f ${DESTDIR}/bin/chsh; ln ${DESTDIR}/bin/passwd ${DESTDIR}/bin/chsh
+       install -c -o bin -g bin -m 444 ${MAN} ${DESTDIR}/usr/man/cat1
+       rm -f ${DESTDIR}/usr/man/cat1/chfn.0
+       rm -f ${DESTDIR}/usr/man/cat1/chsh.0
+       ln ${DESTDIR}/usr/man/cat1/passwd.0 ${DESTDIR}/usr/man/cat1/chfn.0
+       ln ${DESTDIR}/usr/man/cat1/passwd.0 ${DESTDIR}/usr/man/cat1/chsh.0
 
 
-lint: FRC
+lint: ${SRCS}
        lint ${CFLAGS} ${SRCS}
 
        lint ${CFLAGS} ${SRCS}
 
-tags: FRC
+tags: ${SRCS}
        ctags ${SRCS}
        ctags ${SRCS}
-
-FRC:
-
-# DO NOT DELETE THIS LINE -- mkdep uses it.
-# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
-
-passwd: passwd.c /usr/include/sys/types.h /usr/include/sys/file.h
-passwd: /usr/include/sys/stat.h /usr/include/sys/time.h /usr/include/time.h
-passwd: /usr/include/sys/resource.h /usr/include/stdio.h /usr/include/signal.h
-passwd: /usr/include/machine/trap.h /usr/include/pwd.h /usr/include/ndbm.h
-passwd: /usr/include/errno.h /usr/include/strings.h /usr/include/ctype.h
-
-# IF YOU PUT ANYTHING HERE IT WILL GO AWAY