summaryrefslogtreecommitdiff
path: root/mkdep.pl
AgeCommit message (Collapse)AuthorFilesLines
2008-02-05Fix "carryover" of exclude information from one file to another.H. Peter Anvin1-1/+2
my %foo; doesn't mean %foo is initialized to empty, need my %foo = (); or my %foo = undef; or similar for that.
2007-10-19Formatting: kill off "stealth whitespace"H. Peter Anvin1-4/+4
"Stealth whitespace" makes it harder to read diffs, and just generally cause unwanted weirdness. Do a source-wide pass to get rid of it.
2007-09-27Exclude config.h from the dependency list for the canned makefilesH. Peter Anvin1-8/+18
For the canned makefiles, we almost certainly don't have config.h, and shouldn't include it in the list of dependencies.
2007-09-26Add Makefile for OpenWatcom (DOS, OS/2 or Win32 output)H. Peter Anvin1-1/+4
Add a Makefile for OpenWatcom using WMAKE. This is a horrible version of Make, but since it's bundled with OpenWatcom it is probably better to stick to it. It has the nice property that it can produce DOS, Win32 or OS/2 binaries. This Makefile currently assumes that it is hosted on a system where pathname separators are backslashes. For cross-compiling using OpenWatcom on a Linux system it is probably better to write a separate Makefile using GNU make to invoke Watcom.
2007-09-17Sort dependency listsH. Peter Anvin1-1/+1
Sort the dependency lists generated by "mkdep.pl", to make sure that re-running "make alldeps" doesn't change anything unless there has been real dependency changes. The previous version could produce different output between runs and across platforms.
2005-01-14Fix commentH. Peter Anvin1-1/+1
2003-08-30Support building 16-bit DOS binaries using OpenWatcomH. Peter Anvin1-1/+8
2002-06-04Comments are more useful when correctH. Peter Anvin1-1/+1
2002-06-04Break long lines by default.H. Peter Anvin1-3/+16
2002-06-04Correct the command line parsing of --H. Peter Anvin1-2/+2
2002-06-04Allow multiple Makefiles to be specifiedH. Peter Anvin1-1/+10
2002-06-04Support generating dependencies in different syntaxes.H. Peter Anvin1-16/+90
2002-05-12Add the source file itself to the dependency list.H. Peter Anvin1-2/+2
2002-05-12Dependency-generation scriptH. Peter Anvin1-0/+86