diff options
| author | Hartmut Brandt <harti@FreeBSD.org> | 2005-02-01 10:50:37 +0000 |
|---|---|---|
| committer | Hartmut Brandt <harti@FreeBSD.org> | 2005-02-01 10:50:37 +0000 |
| commit | 7a2029bac2130f8d12b0c3bfa5fca898e12e29a9 (patch) | |
| tree | ad58e65b384352ba6b76d8d9e9ad5ae790aaf99f /usr.bin/make/targ.c | |
| parent | 9d97c7ee0a669da96995c604152359d99d483034 (diff) | |
Notes
Diffstat (limited to 'usr.bin/make/targ.c')
| -rw-r--r-- | usr.bin/make/targ.c | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c index cce8bccc6a9b..57de36c18088 100644 --- a/usr.bin/make/targ.c +++ b/usr.bin/make/targ.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1988, 1989, 1990, 1993 * The Regents of the University of California. All rights reserved. * Copyright (c) 1989 by Berkeley Softworks @@ -80,11 +80,18 @@ __FBSDID("$FreeBSD$"); * print something for suffixes, too, but... */ -#include <stdio.h> -#include <time.h> -#include "make.h" -#include "hash.h" -#include "dir.h" +#include <stdio.h> +#include <string.h> + +#include "dir.h" +#include "globals.h" +#include "GNode.h" +#include "hash.h" +#include "make.h" +#include "suff.h" +#include "targ.h" +#include "util.h" +#include "var.h" /* the list of all targets found so far */ static Lst allTargets = Lst_Initializer(allTargets); |
