summaryrefslogtreecommitdiffstats
path: root/src/windows
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows')
-rw-r--r--src/windows/ChangeLog5
-rw-r--r--src/windows/makefile6
-rw-r--r--src/windows/readme9
3 files changed, 18 insertions, 2 deletions
diff --git a/src/windows/ChangeLog b/src/windows/ChangeLog
index f1f5471c3b..76b2f31fa7 100644
--- a/src/windows/ChangeLog
+++ b/src/windows/ChangeLog
@@ -1,3 +1,8 @@
+Mon Mar 27 20:34:58 1995 Keith Vetter (keithv@fusion.com)
+
+ * makefile: makes recursively in wintel directory
+ * readme: updated for wintel program.
+
Thu Mar 23 14:00:00 1995 Keith Vetter (keithv@fusion.com)
* readme: updated to reflect name change of zipping target.
diff --git a/src/windows/makefile b/src/windows/makefile
index 3ac5a7f025..1fef7f0a11 100644
--- a/src/windows/makefile
+++ b/src/windows/makefile
@@ -5,11 +5,17 @@ all::
@echo Making in windows\cns
cd cns
-$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD)
+ @echo Making in windows\wintel
+ cd wintel
+ -$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD)
cd ..
clean::
@echo Making clean in windows\cns
cd cns
-$(MAKE) -$(MAKEFLAGS) clean
+ @echo Making clean in windows\wintel
+ cd wintel
+ -$(MAKE) -$(MAKEFLAGS) clean
cd ..
diff --git a/src/windows/readme b/src/windows/readme
index 1afdc7d197..6a34620948 100644
--- a/src/windows/readme
+++ b/src/windows/readme
@@ -18,11 +18,16 @@ On the PC side
4) nmake -c -f makefile.in # Configures the makefiles and runs
# ...make in all the subdirectories.
+5) <make sure the config and realms files, krb.con and krb.rea,
+ are in the top level directory.>
The resulting interesting files will be:
lib/libkrb5.dll # The actual DLL
lib/libkrb5.lib # The library for linking in the DLL
windows/cns/cns.exe # Cygnus Network Security program
+windows/wintel/telnet # K5 authenticated telnet program
+
+Note on telnet: since the only k5 telnet daemon at this time is
+tsx-11.mit.edu port 13131, the port the program connects to is
+hardwired for now to 13131.
-The config and realms files, krb.con and krb.rea, currently must reside
-in the top level directory.