aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/GNode.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove old fmake. It wasn't built by default for some time. Users thatWarner Losh2015-06-161-224/+0
| | | | | | | | | | really need it can find it in the devel/fmake port or pkg install fmake. Note: This commit is orthogonal to the question 'can we fmake buildworld'. Differential Revision: https://reviews.freebsd.org/D2840 Notes: svn path=/head/; revision=284464
* Spelling fixes for usr.bin/Ulrich Spörlein2011-12-301-1/+1
| | | | Notes: svn path=/head/; revision=228992
* Improve logging when -dm is specified: if the node is consideredMax Khon2007-04-201-0/+1
| | | | | | | | out-of-date print not only "modified before source" message but also the path of youngest source. Notes: svn path=/head/; revision=168893
* Move the Boolean and ReturnStatus stuff from sprite.h to util.h andHartmut Brandt2005-05-131-1/+1
| | | | | | | | | get rid of sprite.h. Obtained from: DragonFlyBSD Notes: svn path=/head/; revision=146177
* Move the definitions of the OP_* constants from make.h into GNode.hHartmut Brandt2005-05-101-2/+63
| | | | | | | | | | | where they actually belong to. Move the definitions of the strings for special macros like "$*" from make.h to parse.h - they're used only in the parser. Submitted by: Max Okumoto <okumoto@ucsd.edu> (7.211) Notes: svn path=/head/; revision=146066
* Remove the leading underscore from structure tags. All identifiersHartmut Brandt2005-03-111-2/+2
| | | | | | | with a leading underscore are in the implementation namespace. Notes: svn path=/head/; revision=143411
* Clean up include files and file including. Split nonints.h into piecesHartmut Brandt2005-02-011-0/+162
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@ucsd.edu> Notes: svn path=/head/; revision=141104