cvs commit: src/usr.bin/make GNode.h arch.c arch.h buf.c buf.h compat.c compat.h cond.c cond.h config.h dir.c dir.h for.c for.h globals.h hash.c hash.h job.c job.h lst.h main.c make.c make.h...

Hartmut Brandt harti at FreeBSD.org
Tue Feb 1 02:50:38 PST 2005


harti       2005-02-01 10:50:37 UTC

  FreeBSD src repository

  Modified files:
    usr.bin/make         arch.c buf.c buf.h compat.c cond.c 
                         config.h dir.c dir.h for.c hash.c hash.h 
                         job.c job.h lst.h main.c make.c make.h 
                         nonints.h parse.c pathnames.h sprite.h 
                         str.c suff.c targ.c util.c var.c var.h 
                         var_modify.c 
    usr.bin/make/lst.lib lstAppend.c lstConcat.c lstDeQueue.c 
                         lstDestroy.c lstDupl.c lstFindFrom.c 
                         lstForEachFrom.c lstInsert.c lstMember.c 
                         lstRemove.c 
  Added files:
    usr.bin/make         GNode.h arch.h compat.h cond.h for.h 
                         globals.h parse.h str.h suff.h targ.h 
                         util.h 
  Log:
  Clean up include files and file including. Split nonints.h into pieces
  that get included just where they are needed. All headers include the
  headers that they need to compile (just with an empty .c file). Sort
  includes alphabetically where apropriate and fix some duplicate commenting
  for struct Job, struct GNode and struct Shell by removing one version and
  inlining the comments into the structure declaration (the comments have been
  somewhat outdated).
  
  This patch does not contain functional changes (checked with md5).
  
  Submitted by:   Max Okumoto <okumoto at ucsd.edu>
  
  Revision  Changes    Path
  1.1       +162 -0    src/usr.bin/make/GNode.h (new)
  1.44      +23 -16    src/usr.bin/make/arch.c
  1.1       +58 -0     src/usr.bin/make/arch.h (new)
  1.25      +6 -3      src/usr.bin/make/buf.c
  1.17      +19 -6     src/usr.bin/make/buf.h
  1.44      +23 -14    src/usr.bin/make/compat.c
  1.1       +49 -0     src/usr.bin/make/compat.h (new)
  1.34      +16 -7     src/usr.bin/make/cond.c
  1.1       +54 -0     src/usr.bin/make/cond.h (new)
  1.16      +6 -1      src/usr.bin/make/config.h
  1.46      +15 -4     src/usr.bin/make/dir.c
  1.17      +16 -14    src/usr.bin/make/dir.h
  1.29      +15 -11    src/usr.bin/make/for.c
  1.1       +47 -0     src/usr.bin/make/for.h (new)
  1.1       +124 -0    src/usr.bin/make/globals.h (new)
  1.24      +7 -3      src/usr.bin/make/hash.c
  1.19      +6 -4      src/usr.bin/make/hash.h
  1.72      +15 -7     src/usr.bin/make/job.c
  1.30      +127 -102  src/usr.bin/make/job.h
  1.27      +6 -8      src/usr.bin/make/lst.h
  1.17      +4 -1      src/usr.bin/make/lst.lib/lstAppend.c
  1.20      +3 -0      src/usr.bin/make/lst.lib/lstConcat.c
  1.16      +3 -0      src/usr.bin/make/lst.lib/lstDeQueue.c
  1.21      +3 -0      src/usr.bin/make/lst.lib/lstDestroy.c
  1.21      +3 -0      src/usr.bin/make/lst.lib/lstDupl.c
  1.19      +3 -0      src/usr.bin/make/lst.lib/lstFindFrom.c
  1.18      +4 -0      src/usr.bin/make/lst.lib/lstForEachFrom.c
  1.17      +3 -0      src/usr.bin/make/lst.lib/lstInsert.c
  1.14      +3 -0      src/usr.bin/make/lst.lib/lstMember.c
  1.18      +4 -0      src/usr.bin/make/lst.lib/lstRemove.c
  1.112     +23 -13    src/usr.bin/make/main.c
  1.32      +14 -5     src/usr.bin/make/make.c
  1.29      +13 -256   src/usr.bin/make/make.h
  1.30      +3 -96     src/usr.bin/make/nonints.h
  1.69      +20 -6     src/usr.bin/make/parse.c
  1.1       +75 -0     src/usr.bin/make/parse.h (new)
  1.13      +7 -6      src/usr.bin/make/pathnames.h
  1.14      +6 -8      src/usr.bin/make/sprite.h
  1.36      +8 -1      src/usr.bin/make/str.c
  1.1       +66 -0     src/usr.bin/make/str.h (new)
  1.40      +17 -5     src/usr.bin/make/suff.c
  1.1       +60 -0     src/usr.bin/make/suff.h (new)
  1.35      +13 -6     src/usr.bin/make/targ.c
  1.1       +73 -0     src/usr.bin/make/targ.h (new)
  1.14      +6 -9      src/usr.bin/make/util.c
  1.1       +90 -0     src/usr.bin/make/util.h (new)
  1.59      +16 -8     src/usr.bin/make/var.c
  1.4       +25 -0     src/usr.bin/make/var.h
  1.8       +10 -8     src/usr.bin/make/var_modify.c


More information about the cvs-all mailing list