diff options
| author | Keith Vetter <keithv@fusion.com> | 1995-04-27 21:06:58 +0000 |
|---|---|---|
| committer | Keith Vetter <keithv@fusion.com> | 1995-04-27 21:06:58 +0000 |
| commit | e17cd253aefc3323abfc5cb6751ce48d03045fde (patch) | |
| tree | 1a8cb7ce430d4da2277901a77583d70a8538bfc1 | |
| parent | 7aa5c7b72c2dd877fd2a4a558c5089ac1bd5f56c (diff) | |
| download | krb5-e17cd253aefc3323abfc5cb6751ce48d03045fde.tar.gz krb5-e17cd253aefc3323abfc5cb6751ce48d03045fde.tar.xz krb5-e17cd253aefc3323abfc5cb6751ce48d03045fde.zip | |
Bug fix with making makefiles on the PC
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5580 dc483132-0cff-0310-8789-dd5450dbe970
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/Makefile.in | 10 |
2 files changed, 10 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index fe09a3c87..4aff78cc7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +Thu Apr 27 14:00:00 1995 Keith Vetter (keithv@fusion.com) + + * Makefile.in: bug fix in makeing makefile on the PC. + Thu Apr 27 15:19:34 1995 Mark Eichin <eichin@cygnus.com> * aclocal.m4 (WITH_KRB4): make --with-krb4 the default, and have diff --git a/src/Makefile.in b/src/Makefile.in index 70e7f6e90..e6d5a186a 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -125,7 +125,7 @@ config-windows:: makefile-windows -$(MAKE) -$(MAKEFLAGS) cd .. -makefile-windows:: wconfig.c config\pre.in config\post.in \ +makefile-windows:: wconfig.exe config\pre.in config\post.in \ include\makefile.in include\krb5\makefile.in \ lib\makefile.in lib\crypto\makefile.in \ lib\crypto\crc32\makefile.in lib\crypto\des\makefile.in \ @@ -143,8 +143,6 @@ makefile-windows:: wconfig.c config\pre.in config\post.in \ lib\krb5\rcache\makefile.in \ util\et\makefile.in util\profile\makefile.in type makefile.in >makefile - SET CL=/nologo - $(CC) /AL wconfig.c .\wconfig config <include\makefile.in >include\makefile .\wconfig config <include\krb5\makefile.in >include\krb5\makefile .\wconfig config <lib\makefile.in >lib\makefile @@ -175,6 +173,10 @@ makefile-windows:: wconfig.c config\pre.in config\post.in \ .\wconfig config <util\profile\makefile.in >util\profile\makefile config\rm.bat wconfig.obj msvc.pdb +wconfig.exe: wconfig.c + SET CL=/nologo + $(CC) /AL wconfig.c + clean-windows:: @echo Making clean in include cd include @@ -194,7 +196,7 @@ clean-windows:: cd .. @echo Making clean in root config\rm.bat *.obj msvc.pdb *.err wconfig.obj wconfig.exe - + # # Renames DOS 8.3 filenames back to their proper, longer names. # |
