specializations. Remove /nologo option for Win32 RFLAGS,
authorTheodore Tso <tytso@mit.edu>
Wed, 12 Jun 1996 04:23:06 +0000 (04:23 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 12 Jun 1996 04:23:06 +0000 (04:23 +0000)
since RC apparently doesn't support it.

changelo: Renamed to ChangeLog, to make life easier.

makefile: Renamed to Makefile.in, so that we can do WIN16/WIN32

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8302 dc483132-0cff-0310-8789-dd5450dbe970

src/windows/cns/ChangeLog [moved from src/windows/cns/changelo with 92% similarity]
src/windows/cns/Makefile.in [moved from src/windows/cns/makefile with 95% similarity]
src/windows/wintel/ChangeLog [moved from src/windows/wintel/changelo with 92% similarity]
src/windows/wintel/Makefile.in [moved from src/windows/wintel/makefile with 94% similarity]

similarity index 92%
rename from src/windows/cns/changelo
rename to src/windows/cns/ChangeLog
index 96fb078a7e25d764e8322ee474f9503753d94a5f..3ca9e96074dd1f796b73aabc908088bad291703f 100644 (file)
@@ -1,3 +1,11 @@
+Wed Jun 12 00:20:08 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * makefile: Renamed to Makefile.in, so that we can do WIN16/WIN32
+               specializations.  Remove /nologo option for Win32 RFLAGS,
+               since RC apparently doesn't support it.
+
+       * changelo: Renamed to ChangeLog, to make life easier.
+
 Wed Jan 10 23:16:41 1996  Theodore Y. Ts'o  <tytso@dcl>
 
        * cns.rc: Add an #ifdef for enabling lower case realm (for use
similarity index 95%
rename from src/windows/cns/makefile
rename to src/windows/cns/Makefile.in
index 0163c874f5e96b64f59d98ce704e0d7fb2d86dae..3fae32b43e30a900862722c85d9892119418651d 100644 (file)
@@ -41,7 +41,8 @@ CFLAGS         = $(CFLAGS_RELEASE) $(INCLUDES) /D$(KRB)=1
 
 ##### RC Compiler
 RC      = rc
-RFLAGS          = /nologo /D$(KRB)=1 $(INCLUDES)
+##WIN16##RFLAGS         = /nologo /D$(KRB)=1 $(INCLUDES)
+##WIN32##RFLAGS         = /D$(KRB)=1 $(INCLUDES)
 
 ##### Linker
 LINK    = link
similarity index 92%
rename from src/windows/wintel/changelo
rename to src/windows/wintel/ChangeLog
index 42f63e266c8e4409ecb8b8e7b06cde75f81e701a..521c68f580cc80e2b02b6d138a13734fffac3b4c 100644 (file)
@@ -1,3 +1,11 @@
+Wed Jun 12 00:22:02 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * makefile: Renamed to Makefile.in, so that we can do WIN16/WIN32
+               specializations.  Remove /nologo option for Win32 RFLAGS,
+               since RC apparently doesn't support it.
+
+       * changelo: Renamed to ChangeLog, to make life easier.
+
 Fri Jan 19 23:22:12 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
 
        * auth.c (k5_auth_send): krb5_get_credentials does not take the
similarity index 94%
rename from src/windows/wintel/makefile
rename to src/windows/wintel/Makefile.in
index d01a01dd1f0c362bc06682fb81be083d976a9348..7134945df0ea3859c03bc922135ec6f7cc2cc030 100644 (file)
@@ -43,8 +43,10 @@ CFLAGS        = $(CFLAGS_RELEASE) $(INCLUDES) /D$(KRB)=1
 
 ##### RC Compiler
 RC      = rc
-RFLAGS_RELEASE = /nologo /DNDEBUG
-RFLAGS_DEBUG   = /nologo
+##WIN16##RFLAGS_RELEASE = /nologo /DNDEBUG
+##WIN16##RFLAGS_DEBUG   = /nologo
+##WIN32##RFLAGS_RELEASE = /DNDEBUG
+##WIN32##RFLAGS_DEBUG   = 
 !if $(DEBUG)
 RFLAGS          = $(RFLAGS_DEBUG) $(INCLUDES)
 !else