X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/ab950546d30461d08fca588e9e8dfdbd10fef6b0..98eb476cd7dae9ac8b40fbc8a13a705dd77ce88b:/usr/src/usr.bin/make/make.c diff --git a/usr/src/usr.bin/make/make.c b/usr/src/usr.bin/make/make.c index b405a9ddc7..eccf3bd4a5 100644 --- a/usr/src/usr.bin/make/make.c +++ b/usr/src/usr.bin/make/make.c @@ -1,20 +1,24 @@ +/* + * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. + * Copyright (c) 1988, 1989 by Adam de Boor + * Copyright (c) 1989 by Berkeley Softworks + * All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * Adam de Boor. + * + * %sccs.include.redist.c% + */ + +#ifndef lint +static char sccsid[] = "@(#)make.c 5.3 (Berkeley) %G%"; +#endif /* not lint */ + /*- * make.c -- * The functions which perform the examination of targets and * their suitability for creation * - * Copyright (c) 1988, 1989 by the Regents of the University of California - * Copyright (c) 1988, 1989 by Adam de Boor - * Copyright (c) 1989 by Berkeley Softworks - * - * Permission to use, copy, modify, and distribute this - * software and its documentation for any non-commercial purpose - * and without fee is hereby granted, provided that the above copyright - * notice appears in all copies. The University of California, - * Berkeley Softworks and Adam de Boor make no representations about - * the suitability of this software for any purpose. It is provided - * "as is" without express or implied warranty. - * * Interface: * Make_Run Initialize things for the module and recreate * whatever needs recreating. Returns TRUE if @@ -41,9 +45,6 @@ * Make_HandleUse See if a child is a .USE node for a parent * and perform the .USE actions if so. */ -#ifndef lint -static char *rcsid = "$Id: make.c,v 1.59 89/11/14 13:44:05 adam Exp $ SPRITE (Berkeley)"; -#endif lint #include "make.h"